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

Unified Diff: chrome/browser/search/hotword_service_unittest.cc

Issue 648653003: Standardize usage of virtual/override/final in chrome/browser/ (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
« no previous file with comments | « chrome/browser/search/hotword_service_factory.h ('k') | chrome/browser/search/iframe_source.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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")
« no previous file with comments | « chrome/browser/search/hotword_service_factory.h ('k') | chrome/browser/search/iframe_source.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698