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 | 9 |
10 namespace switches { | 10 namespace switches { |
(...skipping 1317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1328 const char kViewerLaunchViaAppId[] = "viewer-launch-via-appid"; | 1328 const char kViewerLaunchViaAppId[] = "viewer-launch-via-appid"; |
1329 | 1329 |
1330 // Waits for the given handle to be signaled before relaunching metro Chrome on | 1330 // Waits for the given handle to be signaled before relaunching metro Chrome on |
1331 // Windows 8 and higher. | 1331 // Windows 8 and higher. |
1332 const char kWaitForMutex[] = "wait-for-mutex"; | 1332 const char kWaitForMutex[] = "wait-for-mutex"; |
1333 | 1333 |
1334 // Indicates that chrome was launched to service a search request in Windows 8. | 1334 // Indicates that chrome was launched to service a search request in Windows 8. |
1335 const char kWindows8Search[] = "windows8-search"; | 1335 const char kWindows8Search[] = "windows8-search"; |
1336 #endif | 1336 #endif |
1337 | 1337 |
1338 #if defined(ENABLE_FULL_PRINTING) && !defined(OFFICIAL_BUILD) | 1338 #if defined(ENABLE_PRINT_PREVIEW) && !defined(OFFICIAL_BUILD) |
1339 // Enables support to debug printing subsystem. | 1339 // Enables support to debug printing subsystem. |
1340 const char kDebugPrint[] = "debug-print"; | 1340 const char kDebugPrint[] = "debug-print"; |
1341 #endif | 1341 #endif |
1342 | 1342 |
1343 #ifndef NDEBUG | 1343 #ifndef NDEBUG |
1344 // Enables overriding the path of file manager extension. | 1344 // Enables overriding the path of file manager extension. |
1345 const char kFileManagerExtensionPath[] = "filemgr-ext-path"; | 1345 const char kFileManagerExtensionPath[] = "filemgr-ext-path"; |
1346 #endif | 1346 #endif |
1347 | 1347 |
1348 bool AboutInSettingsEnabled() { | 1348 bool AboutInSettingsEnabled() { |
(...skipping 21 matching lines...) Expand all Loading... |
1370 | 1370 |
1371 // ----------------------------------------------------------------------------- | 1371 // ----------------------------------------------------------------------------- |
1372 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1372 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1373 // | 1373 // |
1374 // You were going to just dump your switches here, weren't you? Instead, please | 1374 // You were going to just dump your switches here, weren't you? Instead, please |
1375 // put them in alphabetical order above, or in order inside the appropriate | 1375 // put them in alphabetical order above, or in order inside the appropriate |
1376 // ifdef at the bottom. The order should match the header. | 1376 // ifdef at the bottom. The order should match the header. |
1377 // ----------------------------------------------------------------------------- | 1377 // ----------------------------------------------------------------------------- |
1378 | 1378 |
1379 } // namespace switches | 1379 } // namespace switches |
OLD | NEW |