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

Unified Diff: Source/modules/indexeddb/InspectorIndexedDBAgent.h

Issue 307943002: Oilpan: Prepare moving InspectorController and InspectorAgents to oilpan. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
Index: Source/modules/indexeddb/InspectorIndexedDBAgent.h
diff --git a/Source/modules/indexeddb/InspectorIndexedDBAgent.h b/Source/modules/indexeddb/InspectorIndexedDBAgent.h
index f2ed5e4696bdf47e35e88323753ce9170863a5ef..994eec29db834f961dd24fd91213f0bb8fd54283 100644
--- a/Source/modules/indexeddb/InspectorIndexedDBAgent.h
+++ b/Source/modules/indexeddb/InspectorIndexedDBAgent.h
@@ -46,6 +46,7 @@ public:
static void provideTo(Page*);
virtual ~InspectorIndexedDBAgent();
+ virtual void trace(Visitor*) OVERRIDE;
virtual void clearFrontend() OVERRIDE;
virtual void restore() OVERRIDE;
@@ -59,9 +60,9 @@ public:
virtual void clearObjectStore(ErrorString*, const String& in_securityOrigin, const String& in_databaseName, const String& in_objectStoreName, PassRefPtr<ClearObjectStoreCallback>) OVERRIDE;
private:
- InspectorIndexedDBAgent(Page*);
+ explicit InspectorIndexedDBAgent(Page*);
- Page* m_page;
+ RawPtrWillBeMember<Page> m_page;
};
} // namespace blink
« no previous file with comments | « Source/modules/geolocation/GeolocationInspectorAgent.cpp ('k') | Source/modules/indexeddb/InspectorIndexedDBAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698