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 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
357 }, | 357 }, |
358 { | 358 { |
359 "enable-shortcuts-provider", | 359 "enable-shortcuts-provider", |
360 IDS_FLAGS_ENABLE_SHORTCUTS_PROVIDER, | 360 IDS_FLAGS_ENABLE_SHORTCUTS_PROVIDER, |
361 IDS_FLAGS_ENABLE_SHORTCUTS_PROVIDER_DESCRIPTION, | 361 IDS_FLAGS_ENABLE_SHORTCUTS_PROVIDER_DESCRIPTION, |
362 kOsAll, | 362 kOsAll, |
363 SINGLE_VALUE_TYPE(switches::kEnableShortcutsProvider) | 363 SINGLE_VALUE_TYPE(switches::kEnableShortcutsProvider) |
364 }, | 364 }, |
365 #if defined(OS_CHROMEOS) | 365 #if defined(OS_CHROMEOS) |
366 { | 366 { |
367 "webui-login", | |
368 IDS_SYNC_SETUP_TITLE, | |
369 IDS_OPTIONS_SETTINGS_INTERNET_OPTIONS_ADVANCED_BUTTON, | |
370 kOsCrOS, | |
371 SINGLE_VALUE_TYPE(switches::kWebUILogin) | |
372 }, | |
373 { | |
374 "enable-archives", | 367 "enable-archives", |
375 IDS_FILE_BROWSER_MOUNT_ARCHIVE, | 368 IDS_FILE_BROWSER_MOUNT_ARCHIVE, |
376 IDS_FILE_MANAGER, | 369 IDS_FILE_MANAGER, |
377 kOsCrOS, | 370 kOsCrOS, |
378 SINGLE_VALUE_TYPE(switches::kEnableArchives) | 371 SINGLE_VALUE_TYPE(switches::kEnableArchives) |
379 }, | 372 }, |
380 #endif | 373 #endif |
381 { | 374 { |
382 "memory-widget", | 375 "memory-widget", |
383 IDS_FLAGS_MEMORY_WIDGET_NAME, | 376 IDS_FLAGS_MEMORY_WIDGET_NAME, |
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
835 } | 828 } |
836 | 829 |
837 const Experiment* GetExperiments(size_t* count) { | 830 const Experiment* GetExperiments(size_t* count) { |
838 *count = num_experiments; | 831 *count = num_experiments; |
839 return experiments; | 832 return experiments; |
840 } | 833 } |
841 | 834 |
842 } // namespace testing | 835 } // namespace testing |
843 | 836 |
844 } // namespace about_flags | 837 } // namespace about_flags |
OLD | NEW |