| Index: chrome/browser/spellchecker/spelling_service_client_unittest.cc
|
| diff --git a/chrome/browser/spellchecker/spelling_service_client_unittest.cc b/chrome/browser/spellchecker/spelling_service_client_unittest.cc
|
| index 57c39361782443c1175e3136e98348c654070b89..2086ff3a506e94f99586d5d42fc6610c47d28e24 100644
|
| --- a/chrome/browser/spellchecker/spelling_service_client_unittest.cc
|
| +++ b/chrome/browser/spellchecker/spelling_service_client_unittest.cc
|
| @@ -49,7 +49,7 @@ class TestSpellingURLFetcher : public net::TestURLFetcher {
|
| }
|
|
|
| virtual void SetUploadData(const std::string& upload_content_type,
|
| - const std::string& upload_content) OVERRIDE {
|
| + const std::string& upload_content) override {
|
| // Verify the given content type is JSON. (The Spelling service returns an
|
| // internal server error when this content type is not JSON.)
|
| EXPECT_EQ("application/json", upload_content_type);
|
| @@ -79,7 +79,7 @@ class TestSpellingURLFetcher : public net::TestURLFetcher {
|
| net::TestURLFetcher::SetUploadData(upload_content_type, upload_content);
|
| }
|
|
|
| - virtual void Start() OVERRIDE {
|
| + virtual void Start() override {
|
| // Verify that this client does not either send cookies to the Spelling
|
| // service or accept cookies from it.
|
| EXPECT_EQ(net::LOAD_DO_NOT_SEND_COOKIES | net::LOAD_DO_NOT_SAVE_COOKIES,
|
| @@ -168,7 +168,7 @@ class TestingSpellingServiceClient : public SpellingServiceClient {
|
| }
|
|
|
| private:
|
| - virtual net::URLFetcher* CreateURLFetcher(const GURL& url) OVERRIDE {
|
| + virtual net::URLFetcher* CreateURLFetcher(const GURL& url) override {
|
| EXPECT_EQ("https://www.googleapis.com/rpc", url.spec());
|
| fetcher_ = new TestSpellingURLFetcher(0, url, this,
|
| request_type_, request_text_,
|
|
|