Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / components / autofill / content / browser / content_autofill_driver_unittest.cc
index d2849ff..50aacba 100644 (file)
@@ -54,7 +54,7 @@ class TestContentAutofillDriver : public ContentAutofillDriver {
         new MockAutofillManager(this, client));
     SetAutofillManager(autofill_manager.Pass());
   }
-  virtual ~TestContentAutofillDriver() {}
+  ~TestContentAutofillDriver() override {}
 
   virtual MockAutofillManager* mock_autofill_manager() {
     return static_cast<MockAutofillManager*>(autofill_manager());
@@ -65,7 +65,7 @@ class TestContentAutofillDriver : public ContentAutofillDriver {
 
 class ContentAutofillDriverTest : public content::RenderViewHostTestHarness {
  public:
-  virtual void SetUp() OVERRIDE {
+  void SetUp() override {
     content::RenderViewHostTestHarness::SetUp();
 
     test_autofill_client_.reset(new TestAutofillClient());
@@ -73,7 +73,7 @@ class ContentAutofillDriverTest : public content::RenderViewHostTestHarness {
                                                 test_autofill_client_.get()));
   }
 
-  virtual void TearDown() OVERRIDE {
+  void TearDown() override {
     // Reset the driver now to cause all pref observers to be removed and avoid
     // crashes that otherwise occur in the destructor.
     driver_.reset();