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

Unified Diff: content/browser/screen_orientation/screen_orientation_message_filter_android.h

Issue 884103004: Update {virtual,override,final} to follow C++11 style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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/screen_orientation/screen_orientation_message_filter_android.h
diff --git a/content/browser/screen_orientation/screen_orientation_message_filter_android.h b/content/browser/screen_orientation/screen_orientation_message_filter_android.h
index 9a01ed4e8666c5d3bee5f228b4c833f2d6e93382..9d85fe6201075ccd6ac876dba6288cbacd6508b1 100644
--- a/content/browser/screen_orientation/screen_orientation_message_filter_android.h
+++ b/content/browser/screen_orientation/screen_orientation_message_filter_android.h
@@ -14,10 +14,10 @@ class ScreenOrientationMessageFilterAndroid : public BrowserMessageFilter {
ScreenOrientationMessageFilterAndroid();
// BrowserMessageFilter implementation.
- virtual bool OnMessageReceived(const IPC::Message& message) override;
+ bool OnMessageReceived(const IPC::Message& message) override;
private:
- virtual ~ScreenOrientationMessageFilterAndroid();
+ ~ScreenOrientationMessageFilterAndroid() override;
void OnStartListening();
void OnStopListening();

Powered by Google App Engine
This is Rietveld 408576698