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

Unified Diff: chrome/browser/android/thumbnail/thumbnail.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
« no previous file with comments | « chrome/browser/android/tab_android.h ('k') | chrome/browser/android/thumbnail/thumbnail_store.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/android/thumbnail/thumbnail.h
diff --git a/chrome/browser/android/thumbnail/thumbnail.h b/chrome/browser/android/thumbnail/thumbnail.h
index 49de59cb29b409107db54fc9167126a0b066e294..79ed868b5a24a42da0ae42564f1a158b84b33323 100644
--- a/chrome/browser/android/thumbnail/thumbnail.h
+++ b/chrome/browser/android/thumbnail/thumbnail.h
@@ -42,7 +42,7 @@ class Thumbnail : public ui::UIResourceClientAndroid {
float scale,
ui::UIResourceProvider* ui_resource_provider,
ThumbnailDelegate* thumbnail_delegate);
- virtual ~Thumbnail();
+ ~Thumbnail() override;
TabId tab_id() const { return tab_id_; }
base::Time time_stamp() const { return time_stamp_; }
@@ -57,11 +57,11 @@ class Thumbnail : public ui::UIResourceClientAndroid {
void CreateUIResource();
// content::UIResourceClient implementation.
- virtual cc::UIResourceBitmap GetBitmap(cc::UIResourceId uid,
- bool resource_lost) override;
+ cc::UIResourceBitmap GetBitmap(cc::UIResourceId uid,
+ bool resource_lost) override;
// ui::UIResourceClientAndroid implementation.
- virtual void UIResourceIsInvalid() override;
+ void UIResourceIsInvalid() override;
protected:
Thumbnail(TabId tab_id,
« no previous file with comments | « chrome/browser/android/tab_android.h ('k') | chrome/browser/android/thumbnail/thumbnail_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698