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

Unified Diff: chrome/browser/sync/test/test_http_bridge_factory.h

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
Index: chrome/browser/sync/test/test_http_bridge_factory.h
diff --git a/chrome/browser/sync/test/test_http_bridge_factory.h b/chrome/browser/sync/test/test_http_bridge_factory.h
index 145d1464ebf6c02f24c07d02163fa2a9d5c029e8..6a99b80e297718ce718af22f19b57019172af232 100644
--- a/chrome/browser/sync/test/test_http_bridge_factory.h
+++ b/chrome/browser/sync/test/test_http_bridge_factory.h
@@ -14,25 +14,25 @@ namespace browser_sync {
class TestHttpBridge : public syncer::HttpPostProviderInterface {
public:
// Begin syncer::HttpPostProviderInterface implementation:
- virtual void SetExtraRequestHeaders(const char * headers) OVERRIDE {}
+ virtual void SetExtraRequestHeaders(const char * headers) override {}
- virtual void SetURL(const char* url, int port) OVERRIDE {}
+ virtual void SetURL(const char* url, int port) override {}
virtual void SetPostPayload(const char* content_type,
int content_length,
- const char* content) OVERRIDE {}
+ const char* content) override {}
virtual bool MakeSynchronousPost(int* error_code,
- int* response_code) OVERRIDE;
+ int* response_code) override;
- virtual int GetResponseContentLength() const OVERRIDE;
+ virtual int GetResponseContentLength() const override;
- virtual const char* GetResponseContent() const OVERRIDE;
+ virtual const char* GetResponseContent() const override;
virtual const std::string GetResponseHeaderValue(
- const std::string&) const OVERRIDE;
+ const std::string&) const override;
- virtual void Abort() OVERRIDE;
+ virtual void Abort() override;
// End syncer::HttpPostProviderInterface implementation.
};
@@ -42,9 +42,9 @@ class TestHttpBridgeFactory : public syncer::HttpPostProviderFactory {
virtual ~TestHttpBridgeFactory();
// syncer::HttpPostProviderFactory:
- virtual void Init(const std::string& user_agent) OVERRIDE;
- virtual syncer::HttpPostProviderInterface* Create() OVERRIDE;
- virtual void Destroy(syncer::HttpPostProviderInterface* http) OVERRIDE;
+ virtual void Init(const std::string& user_agent) override;
+ virtual syncer::HttpPostProviderInterface* Create() override;
+ virtual void Destroy(syncer::HttpPostProviderInterface* http) override;
};
} // namespace browser_sync

Powered by Google App Engine
This is Rietveld 408576698