OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |