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

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

Issue 2738453004: Avoid using declarations in headers which introduce symbol conflicts. (Closed)
Patch Set: Created 3 years, 9 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 1a6d110774cc811cdd91b545cfa5619c92eb7e39..27c64e36389998aafb46f33dea9ffbf539ed3212 100644
--- a/third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.h
+++ b/third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.h
@@ -53,8 +53,8 @@ class MODULES_EXPORT InspectorIndexedDBAgent final
void didCommitLoadForLocalFrame(LocalFrame*) override;
// Called from the front-end.
- Response enable() override;
- Response disable() override;
+ protocol::Response enable() override;
+ protocol::Response disable() override;
void requestDatabaseNames(
const String& securityOrigin,
std::unique_ptr<RequestDatabaseNamesCallback>) override;
@@ -67,7 +67,7 @@ class MODULES_EXPORT InspectorIndexedDBAgent final
const String& indexName,
int skipCount,
int pageSize,
- Maybe<protocol::IndexedDB::KeyRange>,
+ protocol::Maybe<protocol::IndexedDB::KeyRange>,
std::unique_ptr<RequestDataCallback>) override;
void clearObjectStore(const String& securityOrigin,
const String& databaseName,

Powered by Google App Engine
This is Rietveld 408576698