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

Unified Diff: chrome/browser/ui/webui/about_ui.cc

Issue 629463003: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[w-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/ui/webui/about_ui.h ('k') | chrome/browser/ui/webui/app_launcher_page_ui.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/about_ui.cc
diff --git a/chrome/browser/ui/webui/about_ui.cc b/chrome/browser/ui/webui/about_ui.cc
index 63a555c08d6be8c9df88470d3ed14fbae97205d7..a283ff81ebc8a07654a1ef5746ac1db26f4b123e 100644
--- a/chrome/browser/ui/webui/about_ui.cc
+++ b/chrome/browser/ui/webui/about_ui.cc
@@ -125,7 +125,7 @@ class AboutMemoryHandler : public MemoryDetails {
: callback_(callback) {
}
- virtual void OnDetailsAvailable() OVERRIDE;
+ virtual void OnDetailsAvailable() override;
private:
virtual ~AboutMemoryHandler() {}
@@ -189,7 +189,7 @@ class ChromeOSOnlineTermsHandler : public net::URLFetcherDelegate {
virtual ~ChromeOSOnlineTermsHandler() {}
// net::URLFetcherDelegate:
- virtual void OnURLFetchComplete(const net::URLFetcher* source) OVERRIDE {
+ virtual void OnURLFetchComplete(const net::URLFetcher* source) override {
if (source != eula_fetcher_.get()) {
NOTREACHED() << "Callback from foreign URL fetcher";
return;
« no previous file with comments | « chrome/browser/ui/webui/about_ui.h ('k') | chrome/browser/ui/webui/app_launcher_page_ui.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698