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

Unified Diff: components/autofill/core/browser/test_autofill_driver.h

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/test_autofill_driver.h
diff --git a/components/autofill/core/browser/test_autofill_driver.h b/components/autofill/core/browser/test_autofill_driver.h
index 34a8552f5535093fa39a5de6301149fe4ab5f50c..d226a276d9f4db8df3fb12a93ef3fb9aaea6135a 100644
--- a/components/autofill/core/browser/test_autofill_driver.h
+++ b/components/autofill/core/browser/test_autofill_driver.h
@@ -23,26 +23,26 @@ class TestAutofillDriver : public AutofillDriver {
virtual ~TestAutofillDriver();
// AutofillDriver implementation.
- virtual bool IsOffTheRecord() const OVERRIDE;
+ virtual bool IsOffTheRecord() const override;
// Returns the value passed in to the last call to |SetURLRequestContext()|
// or NULL if that method has never been called.
- virtual net::URLRequestContextGetter* GetURLRequestContext() OVERRIDE;
- virtual base::SequencedWorkerPool* GetBlockingPool() OVERRIDE;
- virtual bool RendererIsAvailable() OVERRIDE;
+ virtual net::URLRequestContextGetter* GetURLRequestContext() override;
+ virtual base::SequencedWorkerPool* GetBlockingPool() override;
+ virtual bool RendererIsAvailable() override;
virtual void SendFormDataToRenderer(int query_id,
RendererFormDataAction action,
- const FormData& data) OVERRIDE;
- virtual void PingRenderer() OVERRIDE;
+ const FormData& data) override;
+ virtual void PingRenderer() override;
virtual void SendAutofillTypePredictionsToRenderer(
- const std::vector<FormStructure*>& forms) OVERRIDE;
+ const std::vector<FormStructure*>& forms) override;
virtual void RendererShouldAcceptDataListSuggestion(
- const base::string16& value) OVERRIDE;
- virtual void RendererShouldClearFilledForm() OVERRIDE;
- virtual void RendererShouldClearPreviewedForm() OVERRIDE;
+ const base::string16& value) override;
+ virtual void RendererShouldClearFilledForm() override;
+ virtual void RendererShouldClearPreviewedForm() override;
virtual void RendererShouldFillFieldWithValue(
- const base::string16& value) OVERRIDE;
+ const base::string16& value) override;
virtual void RendererShouldPreviewFieldWithValue(
- const base::string16& value) OVERRIDE;
+ const base::string16& value) override;
// Methods that tests can use to specialize functionality.
« no previous file with comments | « components/autofill/core/browser/test_autofill_client.h ('k') | components/autofill/core/browser/test_personal_data_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698