| Index: chrome/browser/search/hotword_service_unittest.cc
|
| diff --git a/chrome/browser/search/hotword_service_unittest.cc b/chrome/browser/search/hotword_service_unittest.cc
|
| index 27377ea42c2c47c8cd84d3e884b40133d993ccb6..83003713ff279e141ee54bab3a1cbad48d424e33 100644
|
| --- a/chrome/browser/search/hotword_service_unittest.cc
|
| +++ b/chrome/browser/search/hotword_service_unittest.cc
|
| @@ -32,13 +32,12 @@ class MockHotwordService : public HotwordService {
|
| uninstall_count_(0) {
|
| }
|
|
|
| - virtual bool UninstallHotwordExtension(
|
| - ExtensionService* extension_service) override {
|
| + bool UninstallHotwordExtension(ExtensionService* extension_service) override {
|
| uninstall_count_++;
|
| return HotwordService::UninstallHotwordExtension(extension_service);
|
| }
|
|
|
| - virtual void InstallHotwordExtensionFromWebstore() override{
|
| + void InstallHotwordExtensionFromWebstore() override {
|
| scoped_ptr<base::DictionaryValue> manifest =
|
| extensions::DictionaryBuilder()
|
| .Set("name", "Hotword Test Extension")
|
|
|