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

Unified Diff: third_party/WebKit/Source/modules/webdatabase/InspectorDatabaseResource.h

Issue 1696513002: DevTools: move protocol-related generators into inspector subfolder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/webdatabase/InspectorDatabaseResource.h
diff --git a/third_party/WebKit/Source/modules/webdatabase/InspectorDatabaseResource.h b/third_party/WebKit/Source/modules/webdatabase/InspectorDatabaseResource.h
index 53399742a56cfd2ad8087f11ecac1288f7b46892..971f24c4144e192b77f94969ae2275636a408ed4 100644
--- a/third_party/WebKit/Source/modules/webdatabase/InspectorDatabaseResource.h
+++ b/third_party/WebKit/Source/modules/webdatabase/InspectorDatabaseResource.h
@@ -31,8 +31,8 @@
#ifndef InspectorDatabaseResource_h
#define InspectorDatabaseResource_h
-#include "core/InspectorFrontend.h"
#include "platform/heap/Handle.h"
+#include "platform/inspector_protocol/Frontend.h"
#include "wtf/Forward.h"
#include "wtf/text/WTFString.h"
@@ -44,7 +44,7 @@ public:
static InspectorDatabaseResource* create(Database*, const String& domain, const String& name, const String& version);
DECLARE_TRACE();
- void bind(InspectorFrontend::Database*);
+ void bind(protocol::Frontend::Database*);
Database* database() { return m_database.get(); }
void setDatabase(Database* database) { m_database = database; }
String id() const { return m_id; }

Powered by Google App Engine
This is Rietveld 408576698