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

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

Issue 2474743002: [DevTools] migrate DOMDebugger, Input, DeviceOrientation, Tracing to new style (Closed)
Patch Set: rebased Created 4 years, 1 month 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/InspectorTracingAgent.h
diff --git a/third_party/WebKit/Source/core/inspector/InspectorTracingAgent.h b/third_party/WebKit/Source/core/inspector/InspectorTracingAgent.h
index dceaf4538e239b9ea4f9dc82f493cbf47993623b..c7aa89346f78592631eb1e82939e761654abd6d4 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorTracingAgent.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorTracingAgent.h
@@ -42,18 +42,18 @@ class CORE_EXPORT InspectorTracingAgent final
// Base agent methods.
void restore() override;
- void disable(ErrorString*) override;
+ Response disable() override;
// InspectorInstrumentation methods
void frameStartedLoading(LocalFrame*);
void frameStoppedLoading(LocalFrame*);
// Protocol method implementations.
- void start(const Maybe<String>& categories,
- const Maybe<String>& options,
- const Maybe<double>& bufferUsageReportingInterval,
- const Maybe<String>& transferMode,
- const Maybe<protocol::Tracing::TraceConfig>&,
+ void start(Maybe<String> categories,
+ Maybe<String> options,
+ Maybe<double> bufferUsageReportingInterval,
+ Maybe<String> transferMode,
+ Maybe<protocol::Tracing::TraceConfig>,
std::unique_ptr<StartCallback>) override;
void end(std::unique_ptr<EndCallback>) override;

Powered by Google App Engine
This is Rietveld 408576698