diff options
-rw-r--r-- | chrome/browser/renderer_host/browser_render_process_host.cc | 1 | ||||
-rw-r--r-- | chrome/common/chrome_switches.cc | 4 | ||||
-rw-r--r-- | chrome/common/chrome_switches.h | 1 |
3 files changed, 6 insertions, 0 deletions
diff --git a/chrome/browser/renderer_host/browser_render_process_host.cc b/chrome/browser/renderer_host/browser_render_process_host.cc index e945628..d6509e8 100644 --- a/chrome/browser/renderer_host/browser_render_process_host.cc +++ b/chrome/browser/renderer_host/browser_render_process_host.cc @@ -532,6 +532,7 @@ void BrowserRenderProcessHost::PropagateBrowserCommandLineToRenderer( switches::kEnableDCHECK, switches::kSilentDumpOnDCHECK, switches::kUseLowFragHeapCrt, + switches::kEnableSearchProviderApiV2, switches::kEnableStatsTable, switches::kExperimentalSpellcheckerFeatures, switches::kDisableAudio, diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index 6160ad7..e527bc52 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -360,6 +360,10 @@ const char kEnablePreparsedJsCaching[] = "enable-preparsed-js-caching"; // Enable print preview (work in progress). const char kEnablePrintPreview[] = "enable-print-preview"; +// Enable the IsSearchProviderInstalled and InstallSearchProvider with an extra +// parameter to indicate if the provider should be the default. +const char kEnableSearchProviderApiV2[] = "enable-search-provider-api-v2"; + // Enables StatsTable, logging statistics to a global named shared memory table. const char kEnableStatsTable[] = "enable-stats-table"; diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h index aef8cbb..495994d 100644 --- a/chrome/common/chrome_switches.h +++ b/chrome/common/chrome_switches.h @@ -116,6 +116,7 @@ extern const char kEnableNativeWebWorkers[]; extern const char kEnablePreparsedJsCaching[]; extern const char kEnablePreconnect[]; extern const char kEnablePrintPreview[]; +extern const char kEnableSearchProviderApiV2[]; extern const char kEnableStatsTable[]; extern const char kEnableSync[]; extern const char kEnableSyncAutofill[]; |