OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/common/chrome_switches.h" | 5 #include "chrome/common/chrome_switches.h" |
6 | 6 |
7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
10 | 10 |
(...skipping 1291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1302 const char kTabManagementExperimentTypeAnise[] = | 1302 const char kTabManagementExperimentTypeAnise[] = |
1303 "tab-management-experiment-type-anise"; | 1303 "tab-management-experiment-type-anise"; |
1304 const char kTabManagementExperimentTypeBasil[] = | 1304 const char kTabManagementExperimentTypeBasil[] = |
1305 "tab-management-experiment-type-basil"; | 1305 "tab-management-experiment-type-basil"; |
1306 const char kTabManagementExperimentTypeChive[] = | 1306 const char kTabManagementExperimentTypeChive[] = |
1307 "tab-management-experiment-type-chive"; | 1307 "tab-management-experiment-type-chive"; |
1308 const char kTabManagementExperimentTypeDill[] = | 1308 const char kTabManagementExperimentTypeDill[] = |
1309 "tab-management-experiment-type-dill"; | 1309 "tab-management-experiment-type-dill"; |
1310 const char kTabManagementExperimentTypeElderberry[] = | 1310 const char kTabManagementExperimentTypeElderberry[] = |
1311 "tab-management-experiment-type-elderberry"; | 1311 "tab-management-experiment-type-elderberry"; |
1312 const char kEnableForcedMigrationToTabbedMode[] = | |
1313 "enable-forced-migration-to-tabbed-mode"; | |
1314 #endif // defined(OS_ANDROID) | 1312 #endif // defined(OS_ANDROID) |
1315 | 1313 |
1316 #if defined(OS_WIN) || defined(OS_LINUX) | 1314 #if defined(OS_WIN) || defined(OS_LINUX) |
1317 extern const char kEnableInputImeAPI[] = "enable-input-ime-api"; | 1315 extern const char kEnableInputImeAPI[] = "enable-input-ime-api"; |
1318 extern const char kDisableInputImeAPI[] = "disable-input-ime-api"; | 1316 extern const char kDisableInputImeAPI[] = "disable-input-ime-api"; |
1319 #endif | 1317 #endif |
1320 | 1318 |
1321 bool AboutInSettingsEnabled() { | 1319 bool AboutInSettingsEnabled() { |
1322 return SettingsWindowEnabled() && | 1320 return SettingsWindowEnabled() && |
1323 !base::CommandLine::ForCurrentProcess()->HasSwitch( | 1321 !base::CommandLine::ForCurrentProcess()->HasSwitch( |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1364 | 1362 |
1365 // ----------------------------------------------------------------------------- | 1363 // ----------------------------------------------------------------------------- |
1366 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1364 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1367 // | 1365 // |
1368 // You were going to just dump your switches here, weren't you? Instead, please | 1366 // You were going to just dump your switches here, weren't you? Instead, please |
1369 // put them in alphabetical order above, or in order inside the appropriate | 1367 // put them in alphabetical order above, or in order inside the appropriate |
1370 // ifdef at the bottom. The order should match the header. | 1368 // ifdef at the bottom. The order should match the header. |
1371 // ----------------------------------------------------------------------------- | 1369 // ----------------------------------------------------------------------------- |
1372 | 1370 |
1373 } // namespace switches | 1371 } // namespace switches |
OLD | NEW |