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

Unified Diff: chrome/browser/history/web_history_service.cc

Issue 625113002: replace OVERRIDE and FINAL with override and final in chrome/browser/[a-i]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix newly added OVERRIDEs 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
Index: chrome/browser/history/web_history_service.cc
diff --git a/chrome/browser/history/web_history_service.cc b/chrome/browser/history/web_history_service.cc
index 7f0a806fffdc9c4967201a368ac1d2fabfd19da5..2069826cc4b8dd2605db5c8424537731199b4853 100644
--- a/chrome/browser/history/web_history_service.cc
+++ b/chrome/browser/history/web_history_service.cc
@@ -59,7 +59,7 @@ class RequestImpl : public WebHistoryService::Request,
// Returns the contents of the response body received from the server.
const std::string& response_body() { return response_body_; }
- virtual bool is_pending() OVERRIDE { return is_pending_; }
+ virtual bool is_pending() override { return is_pending_; }
private:
friend class history::WebHistoryService;
@@ -93,7 +93,7 @@ class RequestImpl : public WebHistoryService::Request,
}
// content::URLFetcherDelegate interface.
- virtual void OnURLFetchComplete(const net::URLFetcher* source) OVERRIDE {
+ virtual void OnURLFetchComplete(const net::URLFetcher* source) override {
DCHECK_EQ(source, url_fetcher_.get());
response_code_ = url_fetcher_->GetResponseCode();
@@ -131,7 +131,7 @@ class RequestImpl : public WebHistoryService::Request,
virtual void OnGetTokenSuccess(
const OAuth2TokenService::Request* request,
const std::string& access_token,
- const base::Time& expiration_time) OVERRIDE {
+ const base::Time& expiration_time) override {
token_request_.reset();
DCHECK(!access_token.empty());
access_token_ = access_token;
@@ -145,7 +145,7 @@ class RequestImpl : public WebHistoryService::Request,
virtual void OnGetTokenFailure(
const OAuth2TokenService::Request* request,
- const GoogleServiceAuthError& error) OVERRIDE {
+ const GoogleServiceAuthError& error) override {
token_request_.reset();
is_pending_ = false;
« no previous file with comments | « chrome/browser/history/visit_database_unittest.cc ('k') | chrome/browser/history/web_history_service_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698