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

Unified Diff: google_apis/drive/base_requests_unittest.cc

Issue 625293003: replace OVERRIDE and FINAL with override and final in google_apis/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: another 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 | « google_apis/drive/base_requests_server_unittest.cc ('k') | google_apis/drive/drive_api_requests.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: google_apis/drive/base_requests_unittest.cc
diff --git a/google_apis/drive/base_requests_unittest.cc b/google_apis/drive/base_requests_unittest.cc
index 11f887c34372e3c7e3f4c9adcb064e61a532d918..3fcce8c7517c9b040c09e4e40e2b825ba83bd36e 100644
--- a/google_apis/drive/base_requests_unittest.cc
+++ b/google_apis/drive/base_requests_unittest.cc
@@ -39,11 +39,11 @@ class FakeUrlFetchRequest : public UrlFetchRequestBase {
}
protected:
- virtual GURL GetURL() const OVERRIDE { return url_; }
- virtual void ProcessURLFetchResults(const net::URLFetcher* source) OVERRIDE {
+ virtual GURL GetURL() const override { return url_; }
+ virtual void ProcessURLFetchResults(const net::URLFetcher* source) override {
callback_.Run(GetErrorCode());
}
- virtual void RunCallbackOnPrematureFailure(GDataErrorCode code) OVERRIDE {
+ virtual void RunCallbackOnPrematureFailure(GDataErrorCode code) override {
callback_.Run(code);
}
@@ -57,7 +57,7 @@ class BaseRequestsTest : public testing::Test {
public:
BaseRequestsTest() : response_code_(net::HTTP_OK) {}
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
request_context_getter_ = new net::TestURLRequestContextGetter(
message_loop_.message_loop_proxy());
« no previous file with comments | « google_apis/drive/base_requests_server_unittest.cc ('k') | google_apis/drive/drive_api_requests.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698