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

Unified Diff: content/browser/tracing/tracing_controller_impl.h

Issue 637183002: Replace FINAL and OVERRIDE with their C++11 counterparts in content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch Created 6 years, 2 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: content/browser/tracing/tracing_controller_impl.h
diff --git a/content/browser/tracing/tracing_controller_impl.h b/content/browser/tracing/tracing_controller_impl.h
index c494a21362f3b31edf5e12d498eec607610631db..3f80b7a6ac0624025562ad9783d81bb5a27d6640 100644
--- a/content/browser/tracing/tracing_controller_impl.h
+++ b/content/browser/tracing/tracing_controller_impl.h
@@ -28,31 +28,31 @@ class TracingControllerImpl : public TracingController {
// TracingController implementation.
virtual bool GetCategories(
- const GetCategoriesDoneCallback& callback) OVERRIDE;
+ const GetCategoriesDoneCallback& callback) override;
virtual bool EnableRecording(
const base::debug::CategoryFilter& category_filter,
const base::debug::TraceOptions& trace_options,
- const EnableRecordingDoneCallback& callback) OVERRIDE;
+ const EnableRecordingDoneCallback& callback) override;
virtual bool DisableRecording(
- const scoped_refptr<TraceDataSink>& sink) OVERRIDE;
+ const scoped_refptr<TraceDataSink>& sink) override;
virtual bool EnableMonitoring(
const base::debug::CategoryFilter& category_filter,
const base::debug::TraceOptions& trace_options,
- const EnableMonitoringDoneCallback& callback) OVERRIDE;
+ const EnableMonitoringDoneCallback& callback) override;
virtual bool DisableMonitoring(
- const DisableMonitoringDoneCallback& callback) OVERRIDE;
+ const DisableMonitoringDoneCallback& callback) override;
virtual void GetMonitoringStatus(
bool* out_enabled,
base::debug::CategoryFilter* out_category_filter,
- base::debug::TraceOptions* out_trace_options) OVERRIDE;
+ base::debug::TraceOptions* out_trace_options) override;
virtual bool CaptureMonitoringSnapshot(
- const scoped_refptr<TraceDataSink>& sink) OVERRIDE;
+ const scoped_refptr<TraceDataSink>& sink) override;
virtual bool GetTraceBufferPercentFull(
- const GetTraceBufferPercentFullCallback& callback) OVERRIDE;
+ const GetTraceBufferPercentFullCallback& callback) override;
virtual bool SetWatchEvent(const std::string& category_name,
const std::string& event_name,
- const WatchEventCallback& callback) OVERRIDE;
- virtual bool CancelWatchEvent() OVERRIDE;
+ const WatchEventCallback& callback) override;
+ virtual bool CancelWatchEvent() override;
void RegisterTracingUI(TracingUI* tracing_ui);
void UnregisterTracingUI(TracingUI* tracing_ui);
« no previous file with comments | « content/browser/tracing/tracing_controller_browsertest.cc ('k') | content/browser/tracing/tracing_controller_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698