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

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

Issue 665763002: Oilpan: move context menu providers to the heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated GC_PLUGIN_IGNORE() Created 6 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/inspector/InspectorClient.h ('k') | Source/core/inspector/InspectorController.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 void setTextAutosizingEnabled(bool); 81 void setTextAutosizingEnabled(bool);
82 void setDeviceScaleAdjustment(float); 82 void setDeviceScaleAdjustment(float);
83 void setPreferCompositingToLCDTextEnabled(bool); 83 void setPreferCompositingToLCDTextEnabled(bool);
84 84
85 void willBeDestroyed(); 85 void willBeDestroyed();
86 void registerModuleAgent(PassOwnPtrWillBeRawPtr<InspectorAgent>); 86 void registerModuleAgent(PassOwnPtrWillBeRawPtr<InspectorAgent>);
87 87
88 void setInspectorFrontendClient(InspectorFrontendClient*); 88 void setInspectorFrontendClient(InspectorFrontendClient*);
89 void didClearDocumentOfWindowObject(LocalFrame*); 89 void didClearDocumentOfWindowObject(LocalFrame*);
90 void setInjectedScriptForOrigin(const String& origin, const String& source); 90 void setInjectedScriptForOrigin(const String& origin, const String& source);
91 void showContextMenu(float x, float y, PassRefPtr<ContextMenuProvider>); 91 void showContextMenu(float x, float y, PassRefPtrWillBeRawPtr<ContextMenuPro vider>);
92 92
93 void dispatchMessageFromFrontend(const String& message); 93 void dispatchMessageFromFrontend(const String& message);
94 94
95 void connectFrontend(const String& hostId, InspectorFrontendChannel*); 95 void connectFrontend(const String& hostId, InspectorFrontendChannel*);
96 void disconnectFrontend(); 96 void disconnectFrontend();
97 void reconnectFrontend(); 97 void reconnectFrontend();
98 void reuseFrontend(const String& hostId, InspectorFrontendChannel*, const St ring& inspectorStateCookie); 98 void reuseFrontend(const String& hostId, InspectorFrontendChannel*, const St ring& inspectorStateCookie);
99 void setProcessId(long); 99 void setProcessId(long);
100 void setLayerTreeId(int); 100 void setLayerTreeId(int);
101 101
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 InspectorAgentRegistry m_agents; 164 InspectorAgentRegistry m_agents;
165 bool m_isUnderTest; 165 bool m_isUnderTest;
166 bool m_deferredAgentsInitialized; 166 bool m_deferredAgentsInitialized;
167 String m_hostId; 167 String m_hostId;
168 }; 168 };
169 169
170 } 170 }
171 171
172 172
173 #endif // !defined(InspectorController_h) 173 #endif // !defined(InspectorController_h)
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorClient.h ('k') | Source/core/inspector/InspectorController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698