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

Unified Diff: chrome/browser/intranet_redirect_detector.h

Issue 8612007: Add OVERRIDE to chrome/browser/. (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/intranet_redirect_detector.h
diff --git a/chrome/browser/intranet_redirect_detector.h b/chrome/browser/intranet_redirect_detector.h
index 8931c13f061c89e34af6b8f5a21fcfd159859995..ac40ba2f5549f981b6f397a258af82a728380ad6 100644
--- a/chrome/browser/intranet_redirect_detector.h
+++ b/chrome/browser/intranet_redirect_detector.h
@@ -66,10 +66,10 @@ class IntranetRedirectDetector
void FinishSleep();
// content::URLFetcherDelegate
- virtual void OnURLFetchComplete(const content::URLFetcher* source);
+ virtual void OnURLFetchComplete(const content::URLFetcher* source) OVERRIDE;
// NetworkChangeNotifier::IPAddressObserver
- virtual void OnIPAddressChanged();
+ virtual void OnIPAddressChanged() OVERRIDE;
GURL redirect_origin_;
ScopedRunnableMethodFactory<IntranetRedirectDetector> fetcher_factory_;
@@ -92,7 +92,7 @@ class IntranetRedirectHostResolverProc : public net::HostResolverProc {
net::AddressFamily address_family,
net::HostResolverFlags host_resolver_flags,
net::AddressList* addrlist,
- int* os_error);
+ int* os_error) OVERRIDE;
};
#endif // CHROME_BROWSER_INTRANET_REDIRECT_DETECTOR_H_

Powered by Google App Engine
This is Rietveld 408576698