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

Unified Diff: chrome/browser/chromeos/login/registration_screen.h

Issue 8638016: Add OVERRIDE to chrome/browser/chromeos/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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/chromeos/login/registration_screen.h
diff --git a/chrome/browser/chromeos/login/registration_screen.h b/chrome/browser/chromeos/login/registration_screen.h
index 0ac81c3adcdfb0829aa4aceb046bece1384434b1..cb32f210c414ee6b248b745f52b5ef7c0cbd30eb 100644
--- a/chrome/browser/chromeos/login/registration_screen.h
+++ b/chrome/browser/chromeos/login/registration_screen.h
@@ -35,7 +35,7 @@ class RegistrationDomView : public WebPageDomView {
protected:
// Overriden from DOMView:
virtual TabContents* CreateTabContents(Profile* profile,
- SiteInstance* instance);
+ SiteInstance* instance) OVERRIDE;
DISALLOW_COPY_AND_ASSIGN(RegistrationDomView);
};
@@ -46,7 +46,7 @@ class RegistrationView : public WebPageView {
RegistrationView() : dom_view_(new RegistrationDomView()) {}
protected:
- virtual WebPageDomView* dom_view();
+ virtual WebPageDomView* dom_view() OVERRIDE;
private:
// View that renders page.
@@ -76,9 +76,9 @@ class RegistrationScreen : public ViewScreen<RegistrationView>,
private:
// ViewScreen implementation:
- virtual void CreateView();
- virtual void Refresh();
- virtual RegistrationView* AllocateView();
+ virtual void CreateView() OVERRIDE;
+ virtual void Refresh() OVERRIDE;
+ virtual RegistrationView* AllocateView() OVERRIDE;
// TabContentsDelegate implementation:
// Deprecated. Please use two-argument variant.
@@ -92,10 +92,11 @@ class RegistrationScreen : public ViewScreen<RegistrationView>,
virtual TabContents* OpenURLFromTab(TabContents* source,
const OpenURLParams& params) OVERRIDE;
- virtual void HandleKeyboardEvent(const NativeWebKeyboardEvent& event);
+ virtual void HandleKeyboardEvent(
+ const NativeWebKeyboardEvent& event) OVERRIDE;
// WebPageScreen implementation:
- virtual void CloseScreen(ScreenObserver::ExitCodes code);
+ virtual void CloseScreen(ScreenObserver::ExitCodes code) OVERRIDE;
DISALLOW_COPY_AND_ASSIGN(RegistrationScreen);
};

Powered by Google App Engine
This is Rietveld 408576698