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

Unified Diff: content/browser/tracing/tracing_ui.cc

Issue 12210030: Linux/ChromeOS Chromium style checker cleanup, content/ edition. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 10 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_ui.cc
===================================================================
--- content/browser/tracing/tracing_ui.cc (revision 181789)
+++ content/browser/tracing/tracing_ui.cc (working copy)
@@ -62,19 +62,19 @@
virtual ~TracingMessageHandler();
// WebUIMessageHandler implementation.
- virtual void RegisterMessages();
+ virtual void RegisterMessages() OVERRIDE;
// SelectFileDialog::Listener implementation
virtual void FileSelected(const base::FilePath& path,
int index,
- void* params);
- virtual void FileSelectionCanceled(void* params);
+ void* params) OVERRIDE;
+ virtual void FileSelectionCanceled(void* params) OVERRIDE;
// TraceSubscriber implementation.
- virtual void OnEndTracingComplete();
+ virtual void OnEndTracingComplete() OVERRIDE;
virtual void OnTraceDataCollected(
- const scoped_refptr<base::RefCountedString>& trace_fragment);
- virtual void OnTraceBufferPercentFullReply(float percent_full);
+ const scoped_refptr<base::RefCountedString>& trace_fragment) OVERRIDE;
+ virtual void OnTraceBufferPercentFullReply(float percent_full) OVERRIDE;
// Messages.
void OnTracingControllerInitialized(const ListValue* list);
« no previous file with comments | « content/browser/tracing/trace_controller_impl.cc ('k') | content/browser/web_contents/navigation_controller_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698