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

Unified Diff: components/autofill/core/browser/autofill_download_manager_unittest.cc

Issue 623133002: replace OVERRIDE and FINAL with override and final in components/ (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: components/autofill/core/browser/autofill_download_manager_unittest.cc
diff --git a/components/autofill/core/browser/autofill_download_manager_unittest.cc b/components/autofill/core/browser/autofill_download_manager_unittest.cc
index 63d4e75a5c4a388aa02a52602b392fe141679141..be1fd622bde54da5d6ec40dae3e06919b0b03f32 100644
--- a/components/autofill/core/browser/autofill_download_manager_unittest.cc
+++ b/components/autofill/core/browser/autofill_download_manager_unittest.cc
@@ -79,14 +79,14 @@ class AutofillDownloadTest : public AutofillDownloadManager::Observer,
// AutofillDownloadManager::Observer implementation.
virtual void OnLoadedServerPredictions(
- const std::string& response_xml) OVERRIDE {
+ const std::string& response_xml) override {
ResponseData response;
response.response = response_xml;
response.type_of_response = QUERY_SUCCESSFULL;
responses_.push_back(response);
}
- virtual void OnUploadedPossibleFieldTypes() OVERRIDE {
+ virtual void OnUploadedPossibleFieldTypes() override {
ResponseData response;
response.type_of_response = UPLOAD_SUCCESSFULL;
responses_.push_back(response);
@@ -95,7 +95,7 @@ class AutofillDownloadTest : public AutofillDownloadManager::Observer,
virtual void OnServerRequestError(
const std::string& form_signature,
AutofillDownloadManager::RequestType request_type,
- int http_error) OVERRIDE {
+ int http_error) override {
ResponseData response;
response.signature = form_signature;
response.error = http_error;

Powered by Google App Engine
This is Rietveld 408576698