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

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

Issue 2218603003: Timeline: show white overlay till page being reloaded paints (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cleanup Created 4 years, 4 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/InspectorTracingAgent.h
diff --git a/third_party/WebKit/Source/core/inspector/InspectorTracingAgent.h b/third_party/WebKit/Source/core/inspector/InspectorTracingAgent.h
index a4a1011a76cef3540167c6e68d04ab77f5110252..d664d1d238d0917bee43ed7ab9efcdb5accb95ac 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorTracingAgent.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorTracingAgent.h
@@ -25,7 +25,7 @@ public:
public:
virtual ~Client() { }
- virtual void enableTracing(const String& categoryFilter) { }
+ virtual void enableTracing(const String& categoryFilter, const String& reloadingBannerMessage) { }
virtual void disableTracing() { }
};
@@ -41,7 +41,7 @@ public:
void disable(ErrorString*) override;
// 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>&, std::unique_ptr<StartCallback>) override;
+ void start(const Maybe<String>& categories, const Maybe<String>& options, const Maybe<double>& bufferUsageReportingInterval, const Maybe<String>& transferMode, const Maybe<protocol::Tracing::TraceConfig>&, const Maybe<String>& reloadingBannerMessage, std::unique_ptr<StartCallback>) override;
void end(std::unique_ptr<EndCallback>) override;
// Methods for other agents to use.

Powered by Google App Engine
This is Rietveld 408576698