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

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

Issue 774003002: [Hotword] Reverse the experimental flag so that it is on by default. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix spacing Created 6 years 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: chrome/browser/search/hotword_service.cc
diff --git a/chrome/browser/search/hotword_service.cc b/chrome/browser/search/hotword_service.cc
index 9b61a8fa27dae40382373624b6afabadb04c5017..4d8b120ad73172ec3a547c8247ce80188930fb2f 100644
--- a/chrome/browser/search/hotword_service.cc
+++ b/chrome/browser/search/hotword_service.cc
@@ -212,7 +212,7 @@ bool HotwordService::IsExperimentalHotwordingEnabled() {
}
CommandLine* command_line = CommandLine::ForCurrentProcess();
- return command_line->HasSwitch(switches::kEnableExperimentalHotwording);
+ return !command_line->HasSwitch(switches::kDisableExperimentalHotwording);
}
HotwordService::HotwordService(Profile* profile)

Powered by Google App Engine
This is Rietveld 408576698