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

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

Issue 2246233002: [DevTools] Move platform/v8_inspector classes under v8_inspector namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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: third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.h
diff --git a/third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.h b/third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.h
index 38030670bff67dc90ec1fd8ff8add4086b0377ef..1e820d298bac19d11dbdc4d9ce054444be2dd866 100644
--- a/third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.h
+++ b/third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.h
@@ -36,14 +36,17 @@
#include "modules/ModulesExport.h"
#include "wtf/text/WTFString.h"
+namespace v8_inspector {
+class V8InspectorSession;
+}
+
namespace blink {
class InspectedFrames;
-class V8InspectorSession;
class MODULES_EXPORT InspectorIndexedDBAgent final : public InspectorBaseAgent<protocol::IndexedDB::Metainfo> {
public:
- InspectorIndexedDBAgent(InspectedFrames*, V8InspectorSession*);
+ InspectorIndexedDBAgent(InspectedFrames*, v8_inspector::V8InspectorSession*);
~InspectorIndexedDBAgent() override;
DECLARE_VIRTUAL_TRACE();
@@ -60,7 +63,7 @@ public:
private:
Member<InspectedFrames> m_inspectedFrames;
- V8InspectorSession* m_v8Session;
+ v8_inspector::V8InspectorSession* m_v8Session;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698