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

Unified Diff: sync/test/fake_server/fake_server_http_post_provider.h

Issue 629733002: replace OVERRIDE and FINAL with override and final in sync/ (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
Index: sync/test/fake_server/fake_server_http_post_provider.h
diff --git a/sync/test/fake_server/fake_server_http_post_provider.h b/sync/test/fake_server/fake_server_http_post_provider.h
index 8fd42e8bf2ef1f5087811144d71fc30e30bd1f0e..53117c28bf6579cf339ce921e4496ce4d1f72bd5 100644
--- a/sync/test/fake_server/fake_server_http_post_provider.h
+++ b/sync/test/fake_server/fake_server_http_post_provider.h
@@ -26,17 +26,17 @@ class FakeServerHttpPostProvider
scoped_refptr<base::SequencedTaskRunner> task_runner);
// HttpPostProviderInterface implementation.
- virtual void SetExtraRequestHeaders(const char* headers) OVERRIDE;
- virtual void SetURL(const char* url, int port) OVERRIDE;
+ virtual void SetExtraRequestHeaders(const char* headers) 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;
- virtual void Abort() OVERRIDE;
- virtual int GetResponseContentLength() const OVERRIDE;
- virtual const char* GetResponseContent() const OVERRIDE;
+ int* response_code) override;
+ virtual void Abort() override;
+ virtual int GetResponseContentLength() const override;
+ virtual const char* GetResponseContent() const override;
virtual const std::string GetResponseHeaderValue(
- const std::string& name) const OVERRIDE;
+ const std::string& name) const override;
protected:
friend class base::RefCountedThreadSafe<FakeServerHttpPostProvider>;
@@ -72,9 +72,9 @@ class FakeServerHttpPostProviderFactory
virtual ~FakeServerHttpPostProviderFactory();
// 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;
private:
FakeServer* const fake_server_;
« no previous file with comments | « sync/test/fake_server/bookmark_entity_builder.h ('k') | sync/test/fake_server/fake_server_network_resources.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698