| 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 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 SINGLE_VALUE_TYPE(switches::kEnableShortcutsProvider) | 355 SINGLE_VALUE_TYPE(switches::kEnableShortcutsProvider) |
| 356 }, | 356 }, |
| 357 #if defined(OS_CHROMEOS) | 357 #if defined(OS_CHROMEOS) |
| 358 { | 358 { |
| 359 "webui-login", | 359 "webui-login", |
| 360 IDS_SYNC_SETUP_TITLE, | 360 IDS_SYNC_SETUP_TITLE, |
| 361 IDS_OPTIONS_SETTINGS_INTERNET_OPTIONS_ADVANCED_BUTTON, | 361 IDS_OPTIONS_SETTINGS_INTERNET_OPTIONS_ADVANCED_BUTTON, |
| 362 kOsCrOS, | 362 kOsCrOS, |
| 363 SINGLE_VALUE_TYPE(switches::kWebUILogin) | 363 SINGLE_VALUE_TYPE(switches::kWebUILogin) |
| 364 }, | 364 }, |
| 365 { |
| 366 "enable-archives", |
| 367 IDS_FILE_BROWSER_MOUNT_ARCHIVE, |
| 368 IDS_FILE_MANAGER, |
| 369 kOsCrOS, |
| 370 SINGLE_VALUE_TYPE(switches::kEnableArchives) |
| 371 }, |
| 365 #endif | 372 #endif |
| 366 { | 373 { |
| 367 "memory-widget", | 374 "memory-widget", |
| 368 IDS_FLAGS_MEMORY_WIDGET_NAME, | 375 IDS_FLAGS_MEMORY_WIDGET_NAME, |
| 369 IDS_FLAGS_MEMORY_WIDGET_DESCRIPTION, | 376 IDS_FLAGS_MEMORY_WIDGET_DESCRIPTION, |
| 370 kOsCrOS, | 377 kOsCrOS, |
| 371 #if defined(OS_CHROMEOS) | 378 #if defined(OS_CHROMEOS) |
| 372 // This switch exists only on Chrome OS. | 379 // This switch exists only on Chrome OS. |
| 373 SINGLE_VALUE_TYPE(switches::kMemoryWidget) | 380 SINGLE_VALUE_TYPE(switches::kMemoryWidget) |
| 374 #else | 381 #else |
| (...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 804 } | 811 } |
| 805 | 812 |
| 806 const Experiment* GetExperiments(size_t* count) { | 813 const Experiment* GetExperiments(size_t* count) { |
| 807 *count = num_experiments; | 814 *count = num_experiments; |
| 808 return experiments; | 815 return experiments; |
| 809 } | 816 } |
| 810 | 817 |
| 811 } // namespace testing | 818 } // namespace testing |
| 812 | 819 |
| 813 } // namespace about_flags | 820 } // namespace about_flags |
| OLD | NEW |