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

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

Issue 666133002: Standardize usage of virtual/override/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 d226a276d9f4db8df3fb12a93ef3fb9aaea6135a..b1d2ccaf5e51bcbaa81e334c860a1f0f5fba729f 100644
--- a/components/autofill/core/browser/test_autofill_driver.h
+++ b/components/autofill/core/browser/test_autofill_driver.h
@@ -20,28 +20,27 @@ namespace autofill {
class TestAutofillDriver : public AutofillDriver {
public:
TestAutofillDriver();
- virtual ~TestAutofillDriver();
+ ~TestAutofillDriver() override;
// AutofillDriver implementation.
- virtual bool IsOffTheRecord() const override;
+ 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 void SendFormDataToRenderer(int query_id,
- RendererFormDataAction action,
- const FormData& data) override;
- virtual void PingRenderer() override;
- virtual void SendAutofillTypePredictionsToRenderer(
+ net::URLRequestContextGetter* GetURLRequestContext() override;
+ base::SequencedWorkerPool* GetBlockingPool() override;
+ bool RendererIsAvailable() override;
+ void SendFormDataToRenderer(int query_id,
+ RendererFormDataAction action,
+ const FormData& data) override;
+ void PingRenderer() override;
+ void SendAutofillTypePredictionsToRenderer(
const std::vector<FormStructure*>& forms) override;
- virtual void RendererShouldAcceptDataListSuggestion(
+ void RendererShouldAcceptDataListSuggestion(
const base::string16& value) override;
- virtual void RendererShouldClearFilledForm() override;
- virtual void RendererShouldClearPreviewedForm() override;
- virtual void RendererShouldFillFieldWithValue(
- const base::string16& value) override;
- virtual void RendererShouldPreviewFieldWithValue(
+ void RendererShouldClearFilledForm() override;
+ void RendererShouldClearPreviewedForm() override;
+ void RendererShouldFillFieldWithValue(const base::string16& value) override;
+ void RendererShouldPreviewFieldWithValue(
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