Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(148)

Side by Side Diff: Source/core/inspector/InspectorInspectorAgent.h

Issue 884753003: Fix template angle bracket syntax in inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Some more fixes Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2011 Google Inc. All rights reserved. 3 * Copyright (C) 2011 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 78
79 void inspect(PassRefPtr<TypeBuilder::Runtime::RemoteObject> objectToInspect, PassRefPtr<JSONObject> hints); 79 void inspect(PassRefPtr<TypeBuilder::Runtime::RemoteObject> objectToInspect, PassRefPtr<JSONObject> hints);
80 80
81 private: 81 private:
82 InspectorInspectorAgent(Page*, InjectedScriptManager*); 82 InspectorInspectorAgent(Page*, InjectedScriptManager*);
83 83
84 RawPtrWillBeMember<Page> m_inspectedPage; 84 RawPtrWillBeMember<Page> m_inspectedPage;
85 InspectorFrontend::Inspector* m_frontend; 85 InspectorFrontend::Inspector* m_frontend;
86 RawPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager; 86 RawPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager;
87 87
88 Vector<pair<long, String> > m_pendingEvaluateTestCommands; 88 Vector<pair<long, String>> m_pendingEvaluateTestCommands;
89 pair<RefPtr<TypeBuilder::Runtime::RemoteObject>, RefPtr<JSONObject> > m_pend ingInspectData; 89 pair<RefPtr<TypeBuilder::Runtime::RemoteObject>, RefPtr<JSONObject>> m_pendi ngInspectData;
90 typedef HashMap<String, String> InjectedScriptForOriginMap; 90 typedef HashMap<String, String> InjectedScriptForOriginMap;
91 InjectedScriptForOriginMap m_injectedScriptForOrigin; 91 InjectedScriptForOriginMap m_injectedScriptForOrigin;
92 }; 92 };
93 93
94 } // namespace blink 94 } // namespace blink
95 95
96 #endif // !defined(InspectorInspectorAgent_h) 96 #endif // !defined(InspectorInspectorAgent_h)
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorHistory.h ('k') | Source/core/inspector/InspectorInspectorAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698