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

Unified Diff: Source/core/inspector/InspectorController.h

Issue 415043003: Oilpan: Prepare moving InspectorFrontendHost to Oilpan (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/core/inspector/InspectorController.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorController.h
diff --git a/Source/core/inspector/InspectorController.h b/Source/core/inspector/InspectorController.h
index 220ac47b1c4df6b67f0829051f01117c5d18bc64..ce67e5ed5aca984802fb352f759d42c3a86afd14 100644
--- a/Source/core/inspector/InspectorController.h
+++ b/Source/core/inspector/InspectorController.h
@@ -32,6 +32,7 @@
#define InspectorController_h
#include "core/inspector/InspectorBaseAgent.h"
+#include "platform/heap/Handle.h"
#include "wtf/Forward.h"
#include "wtf/HashMap.h"
#include "wtf/Noncopyable.h"
@@ -87,7 +88,7 @@ public:
void willBeDestroyed();
void registerModuleAgent(PassOwnPtrWillBeRawPtr<InspectorAgent>);
- void setInspectorFrontendClient(PassOwnPtr<InspectorFrontendClient>);
+ void setInspectorFrontendClient(PassOwnPtrWillBeRawPtr<InspectorFrontendClient>);
void didClearDocumentOfWindowObject(LocalFrame*);
void setInjectedScriptForOrigin(const String& origin, const String& source);
void showContextMenu(float x, float y, PassRefPtr<ContextMenuProvider>);
@@ -157,7 +158,7 @@ private:
RawPtrWillBeMember<InspectorTracingAgent> m_tracingAgent;
RefPtr<InspectorBackendDispatcher> m_inspectorBackendDispatcher;
- OwnPtr<InspectorFrontendClient> m_inspectorFrontendClient;
+ OwnPtrWillBeMember<InspectorFrontendClient> m_inspectorFrontendClient;
OwnPtr<InspectorFrontend> m_inspectorFrontend;
RawPtrWillBeMember<Page> m_page;
InspectorClient* m_inspectorClient;
« no previous file with comments | « no previous file | Source/core/inspector/InspectorController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698