Chromium Code Reviews

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorLogAgent.h

Issue 2468233003: [DevTools] Migrate Accessibility, Log, Worker to new style (Closed)
Patch Set: addressed comments Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
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 014fa96db0c3f1b9605f126468a0b4fa723cf3f8..ae1f9c157fe3971c64b5c498d49a114dbbd14fdc 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorLogAgent.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorLogAgent.h
@@ -29,9 +29,9 @@ class CORE_EXPORT InspectorLogAgent
void consoleMessageAdded(ConsoleMessage*);
// Protocol methods.
- void enable(ErrorString*) override;
- void disable(ErrorString*) override;
- void clear(ErrorString*) override;
+ Response enable() override;
+ Response disable() override;
+ Response clear() override;
private:
bool m_enabled;

Powered by Google App Engine