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

Unified Diff: chrome/browser/chrome_browser_main_win.h

Issue 1100223002: Update {virtual,override} to follow C++11 style in chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 8 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/chrome_browser_main_win.h
diff --git a/chrome/browser/chrome_browser_main_win.h b/chrome/browser/chrome_browser_main_win.h
index e5b088315cd663cf83ec51d7a4b5a87995aa99dd..2662b7be854af78077c167111a2f40fd7af7d486 100644
--- a/chrome/browser/chrome_browser_main_win.h
+++ b/chrome/browser/chrome_browser_main_win.h
@@ -26,17 +26,17 @@ class ChromeBrowserMainPartsWin : public ChromeBrowserMainParts {
explicit ChromeBrowserMainPartsWin(
const content::MainFunctionParams& parameters);
- virtual ~ChromeBrowserMainPartsWin();
+ ~ChromeBrowserMainPartsWin() override;
// BrowserParts overrides.
- virtual void ToolkitInitialized() override;
- virtual void PreMainMessageLoopStart() override;
- virtual int PreCreateThreads() override;
+ void ToolkitInitialized() override;
+ void PreMainMessageLoopStart() override;
+ int PreCreateThreads() override;
// ChromeBrowserMainParts overrides.
- virtual void ShowMissingLocaleMessageBox() override;
- virtual void PostProfileInit() override;
- virtual void PostBrowserStart() override;
+ void ShowMissingLocaleMessageBox() override;
+ void PostProfileInit() override;
+ void PostBrowserStart() override;
// Prepares the localized strings that are going to be displayed to
// the user if the browser process dies. These strings are stored in the
« no previous file with comments | « chrome/browser/browser_process_platform_part_aurawin.h ('k') | chrome/browser/chrome_elf_init_unittest_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698