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

Unified Diff: chrome/browser/android/foreign_session_helper.h

Issue 884213005: Update {virtual,override,final} to follow C++11 style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 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: chrome/browser/android/foreign_session_helper.h
diff --git a/chrome/browser/android/foreign_session_helper.h b/chrome/browser/android/foreign_session_helper.h
index 0f1ad0090d75ad39e1c48f60a7b1305adc725600..5f79bd40f711a3db92e4482dcf5309e9ff3a937f 100644
--- a/chrome/browser/android/foreign_session_helper.h
+++ b/chrome/browser/android/foreign_session_helper.h
@@ -37,14 +37,14 @@ class ForeignSessionHelper : public content::NotificationObserver {
void DeleteForeignSession(JNIEnv* env, jobject obj, jstring session_tag);
// NotificationObserver implemenation
- virtual void Observe(int type,
- const content::NotificationSource& source,
- const content::NotificationDetails& details) override;
+ void Observe(int type,
+ const content::NotificationSource& source,
+ const content::NotificationDetails& details) override;
static bool RegisterForeignSessionHelper(JNIEnv* env);
private:
- virtual ~ForeignSessionHelper();
+ ~ForeignSessionHelper() override;
Profile* profile_; // weak
base::android::ScopedJavaGlobalRef<jobject> callback_;

Powered by Google App Engine
This is Rietveld 408576698