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

Unified Diff: chrome/browser/translate/chrome_translate_client.h

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master Created 6 years, 2 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/thumbnails/thumbnail_tab_helper.h ('k') | chrome/browser/translate/cld_data_harness.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/translate/chrome_translate_client.h
diff --git a/chrome/browser/translate/chrome_translate_client.h b/chrome/browser/translate/chrome_translate_client.h
index 01529ff16ef544f9ca11b94338343d92dfbafb60..2ba5e3405d3cbfdfb746516b55dc6f1b002a4e65 100644
--- a/chrome/browser/translate/chrome_translate_client.h
+++ b/chrome/browser/translate/chrome_translate_client.h
@@ -79,38 +79,38 @@ class ChromeTranslateClient
content::WebContents* GetWebContents();
// TranslateClient implementation.
- virtual translate::TranslateDriver* GetTranslateDriver() OVERRIDE;
- virtual PrefService* GetPrefs() OVERRIDE;
- virtual scoped_ptr<translate::TranslatePrefs> GetTranslatePrefs() OVERRIDE;
+ virtual translate::TranslateDriver* GetTranslateDriver() override;
+ virtual PrefService* GetPrefs() override;
+ virtual scoped_ptr<translate::TranslatePrefs> GetTranslatePrefs() override;
virtual translate::TranslateAcceptLanguages* GetTranslateAcceptLanguages()
- OVERRIDE;
- virtual int GetInfobarIconID() const OVERRIDE;
+ override;
+ virtual int GetInfobarIconID() const override;
virtual scoped_ptr<infobars::InfoBar> CreateInfoBar(
- scoped_ptr<translate::TranslateInfoBarDelegate> delegate) const OVERRIDE;
+ scoped_ptr<translate::TranslateInfoBarDelegate> delegate) const override;
virtual void ShowTranslateUI(translate::TranslateStep step,
const std::string source_language,
const std::string target_language,
translate::TranslateErrors::Type error_type,
- bool triggered_from_menu) OVERRIDE;
- virtual bool IsTranslatableURL(const GURL& url) OVERRIDE;
+ bool triggered_from_menu) override;
+ virtual bool IsTranslatableURL(const GURL& url) override;
virtual void ShowReportLanguageDetectionErrorUI(
- const GURL& report_url) OVERRIDE;
+ const GURL& report_url) override;
// ContentTranslateDriver::Observer implementation.
virtual void OnLanguageDetermined(
- const translate::LanguageDetectionDetails& details) OVERRIDE;
+ const translate::LanguageDetectionDetails& details) override;
virtual void OnPageTranslated(
const std::string& original_lang,
const std::string& translated_lang,
- translate::TranslateErrors::Type error_type) OVERRIDE;
+ translate::TranslateErrors::Type error_type) override;
private:
explicit ChromeTranslateClient(content::WebContents* web_contents);
friend class content::WebContentsUserData<ChromeTranslateClient>;
// content::WebContentsObserver implementation.
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
- virtual void WebContentsDestroyed() OVERRIDE;
+ virtual bool OnMessageReceived(const IPC::Message& message) override;
+ virtual void WebContentsDestroyed() override;
// Shows the translate bubble.
void ShowBubble(translate::TranslateStep step,
« no previous file with comments | « chrome/browser/thumbnails/thumbnail_tab_helper.h ('k') | chrome/browser/translate/cld_data_harness.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698