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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorLogAgent.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/core/inspector/InspectorLogAgent.h
diff --git a/third_party/WebKit/Source/core/inspector/InspectorLogAgent.h b/third_party/WebKit/Source/core/inspector/InspectorLogAgent.h
index 12a08f2115f5a23ac2982c945ba86dcdc65490fc..840f014642420b553607a3659daf7682511f7f2f 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorLogAgent.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorLogAgent.h
@@ -32,13 +32,13 @@ class CORE_EXPORT InspectorLogAgent
void consoleMessageAdded(ConsoleMessage*);
// Protocol methods.
- Response enable() override;
- Response disable() override;
- Response clear() override;
- Response startViolationsReport(
+ protocol::Response enable() override;
+ protocol::Response disable() override;
+ protocol::Response clear() override;
+ protocol::Response startViolationsReport(
std::unique_ptr<protocol::Array<protocol::Log::ViolationSetting>>)
override;
- Response stopViolationsReport() override;
+ protocol::Response stopViolationsReport() override;
private:
// PerformanceMonitor::Client implementation.

Powered by Google App Engine
This is Rietveld 408576698