Index: chrome/browser/extensions/api/webstore_private/webstore_private_apitest.cc |
diff --git a/chrome/browser/extensions/api/webstore_private/webstore_private_apitest.cc b/chrome/browser/extensions/api/webstore_private/webstore_private_apitest.cc |
index 0074b7042e353e93855fc24ea16077f565fc13ce..a462e58d2eb950cc84e9749aa527c84d6a802e1e 100644 |
--- a/chrome/browser/extensions/api/webstore_private/webstore_private_apitest.cc |
+++ b/chrome/browser/extensions/api/webstore_private/webstore_private_apitest.cc |
@@ -45,7 +45,7 @@ class WebstoreInstallListener : public WebstoreInstaller::Delegate { |
WebstoreInstallListener() |
: received_failure_(false), received_success_(false), waiting_(false) {} |
- virtual void OnExtensionInstallSuccess(const std::string& id) override { |
+ void OnExtensionInstallSuccess(const std::string& id) override { |
received_success_ = true; |
id_ = id; |
@@ -55,7 +55,7 @@ class WebstoreInstallListener : public WebstoreInstaller::Delegate { |
} |
} |
- virtual void OnExtensionInstallFailure( |
+ void OnExtensionInstallFailure( |
const std::string& id, |
const std::string& error, |
WebstoreInstaller::FailureReason reason) override { |
@@ -95,14 +95,14 @@ class ExtensionWebstorePrivateApiTest : public ExtensionApiTest { |
ExtensionWebstorePrivateApiTest() {} |
virtual ~ExtensionWebstorePrivateApiTest() {} |
- virtual void SetUpCommandLine(CommandLine* command_line) override { |
+ void SetUpCommandLine(CommandLine* command_line) override { |
ExtensionApiTest::SetUpCommandLine(command_line); |
command_line->AppendSwitchASCII( |
switches::kAppsGalleryURL, |
"http://www.example.com/files/extensions/api_test"); |
} |
- virtual void SetUpInProcessBrowserTestFixture() override { |
+ void SetUpInProcessBrowserTestFixture() override { |
ExtensionApiTest::SetUpInProcessBrowserTestFixture(); |
// Start up the test server and get us ready for calling the install |
@@ -112,7 +112,7 @@ class ExtensionWebstorePrivateApiTest : public ExtensionApiTest { |
extensions::ExtensionInstallUI::set_disable_failure_ui_for_tests(); |
} |
- virtual void SetUpOnMainThread() override { |
+ void SetUpOnMainThread() override { |
ExtensionApiTest::SetUpOnMainThread(); |
ExtensionInstallPrompt::g_auto_confirm_for_tests = |
@@ -398,7 +398,7 @@ IN_PROC_BROWSER_TEST_F(ExtensionWebstoreGetWebGLStatusTest, Blocked) { |
class EphemeralAppWebstorePrivateApiTest |
: public ExtensionWebstorePrivateApiTest { |
public: |
- virtual void SetUpInProcessBrowserTestFixture() override { |
+ void SetUpInProcessBrowserTestFixture() override { |
ExtensionWebstorePrivateApiTest::SetUpInProcessBrowserTestFixture(); |
net::HostPortPair host_port = test_server()->host_port_pair(); |
@@ -410,7 +410,7 @@ class EphemeralAppWebstorePrivateApiTest |
switches::kAppsGalleryURL, test_gallery_url); |
} |
- virtual GURL GetTestServerURL(const std::string& path) override { |
+ GURL GetTestServerURL(const std::string& path) override { |
return DoGetTestServerURL( |
std::string("files/extensions/platform_apps/ephemeral_launcher/") + |
path); |