| 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 1166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1177 // Disables Translate experimental new UX which replaces the infobar. | 1177 // Disables Translate experimental new UX which replaces the infobar. |
| 1178 const char kDisableTranslateNewUX[] = "disable-translate-new-ux"; | 1178 const char kDisableTranslateNewUX[] = "disable-translate-new-ux"; |
| 1179 | 1179 |
| 1180 // Enable the toolkit-views App Info dialog for Mac. This is accessible from | 1180 // Enable the toolkit-views App Info dialog for Mac. This is accessible from |
| 1181 // chrome://apps and chrome://extensions and is already enabled on non-mac. | 1181 // chrome://apps and chrome://extensions and is already enabled on non-mac. |
| 1182 const char kEnableAppInfoDialogMac[] = "enable-app-info-dialog-mac"; | 1182 const char kEnableAppInfoDialogMac[] = "enable-app-info-dialog-mac"; |
| 1183 | 1183 |
| 1184 // Enables custom Cmd+` window cycling for platform apps and hosted apps. | 1184 // Enables custom Cmd+` window cycling for platform apps and hosted apps. |
| 1185 const char kEnableAppWindowCycling[] = "enable-app-window-cycling"; | 1185 const char kEnableAppWindowCycling[] = "enable-app-window-cycling"; |
| 1186 | 1186 |
| 1187 // Enables fullscreen low power mode transitions on Mac. |
| 1188 const char kEnableFullscreenLowPowerMode[] = "enable-fullscreen-low-power-mode"; |
| 1189 |
| 1187 // Enables tab detaching in fullscreen mode on Mac. | 1190 // Enables tab detaching in fullscreen mode on Mac. |
| 1188 const char kEnableFullscreenTabDetaching[] = "enable-fullscreen-tab-detaching"; | 1191 const char kEnableFullscreenTabDetaching[] = "enable-fullscreen-tab-detaching"; |
| 1189 | 1192 |
| 1190 // Allows hosted apps to be opened in windows on Mac. | 1193 // Allows hosted apps to be opened in windows on Mac. |
| 1191 const char kEnableHostedAppsInWindows[] = "enable-hosted-apps-in-windows"; | 1194 const char kEnableHostedAppsInWindows[] = "enable-hosted-apps-in-windows"; |
| 1192 | 1195 |
| 1193 // Enables use of toolkit-views based native app windows. | 1196 // Enables use of toolkit-views based native app windows. |
| 1194 const char kEnableMacViewsNativeAppWindows[] = | 1197 const char kEnableMacViewsNativeAppWindows[] = |
| 1195 "enable-mac-views-native-app-windows"; | 1198 "enable-mac-views-native-app-windows"; |
| 1196 | 1199 |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1372 | 1375 |
| 1373 // ----------------------------------------------------------------------------- | 1376 // ----------------------------------------------------------------------------- |
| 1374 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1377 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1375 // | 1378 // |
| 1376 // You were going to just dump your switches here, weren't you? Instead, please | 1379 // You were going to just dump your switches here, weren't you? Instead, please |
| 1377 // put them in alphabetical order above, or in order inside the appropriate | 1380 // put them in alphabetical order above, or in order inside the appropriate |
| 1378 // ifdef at the bottom. The order should match the header. | 1381 // ifdef at the bottom. The order should match the header. |
| 1379 // ----------------------------------------------------------------------------- | 1382 // ----------------------------------------------------------------------------- |
| 1380 | 1383 |
| 1381 } // namespace switches | 1384 } // namespace switches |
| OLD | NEW |