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

Side by Side Diff: chrome/browser/about_flags.cc

Issue 8387060: Enable ShortcutsProvider for omnibox on the trunk by default (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/autocomplete/autocomplete.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/about_flags.h" 5 #include "chrome/browser/about_flags.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <iterator> 8 #include <iterator>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 MULTI_VALUE_TYPE(kPrerenderFromOmniboxChoices) 324 MULTI_VALUE_TYPE(kPrerenderFromOmniboxChoices)
325 }, 325 },
326 { 326 {
327 "disable-panels", 327 "disable-panels",
328 IDS_FLAGS_DISABLE_PANELS_NAME, 328 IDS_FLAGS_DISABLE_PANELS_NAME,
329 IDS_FLAGS_DISABLE_PANELS_DESCRIPTION, 329 IDS_FLAGS_DISABLE_PANELS_DESCRIPTION,
330 kOsAll, 330 kOsAll,
331 SINGLE_VALUE_TYPE(switches::kDisablePanels) 331 SINGLE_VALUE_TYPE(switches::kDisablePanels)
332 }, 332 },
333 { 333 {
334 "enable-shortcuts-provider", 334 "disable-shortcuts-provider",
335 IDS_FLAGS_ENABLE_SHORTCUTS_PROVIDER, 335 IDS_FLAGS_DISABLE_SHORTCUTS_PROVIDER,
336 IDS_FLAGS_ENABLE_SHORTCUTS_PROVIDER_DESCRIPTION, 336 IDS_FLAGS_DISABLE_SHORTCUTS_PROVIDER_DESCRIPTION,
337 kOsAll, 337 kOsAll,
338 SINGLE_VALUE_TYPE(switches::kEnableShortcutsProvider) 338 SINGLE_VALUE_TYPE(switches::kDisableShortcutsProvider)
339 }, 339 },
340 #if defined(OS_CHROMEOS) 340 #if defined(OS_CHROMEOS)
341 { 341 {
342 "enable-bluetooth", 342 "enable-bluetooth",
343 IDS_FLAGS_ENABLE_BLUETOOTH_NAME, 343 IDS_FLAGS_ENABLE_BLUETOOTH_NAME,
344 IDS_FLAGS_ENABLE_BLUETOOTH_DESCRIPTION, 344 IDS_FLAGS_ENABLE_BLUETOOTH_DESCRIPTION,
345 kOsCrOS, 345 kOsCrOS,
346 SINGLE_VALUE_TYPE(switches::kEnableBluetooth) 346 SINGLE_VALUE_TYPE(switches::kEnableBluetooth)
347 }, 347 },
348 #endif 348 #endif
(...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after
865 } 865 }
866 866
867 const Experiment* GetExperiments(size_t* count) { 867 const Experiment* GetExperiments(size_t* count) {
868 *count = num_experiments; 868 *count = num_experiments;
869 return experiments; 869 return experiments;
870 } 870 }
871 871
872 } // namespace testing 872 } // namespace testing
873 873
874 } // namespace about_flags 874 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/autocomplete/autocomplete.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698