| 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 #include "ppapi/features/features.h" | 10 #include "ppapi/features/features.h" |
| (...skipping 1081 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1092 const char kWatcherProcess[] = "watcher"; | 1092 const char kWatcherProcess[] = "watcher"; |
| 1093 | 1093 |
| 1094 // Enables custom-drawing the titlebar and tabstrip background so that it's not | 1094 // Enables custom-drawing the titlebar and tabstrip background so that it's not |
| 1095 // a garish #FFFFFF like it is by default on Windows 10. | 1095 // a garish #FFFFFF like it is by default on Windows 10. |
| 1096 const char kWindows10CustomTitlebar[] = "windows10-custom-titlebar"; | 1096 const char kWindows10CustomTitlebar[] = "windows10-custom-titlebar"; |
| 1097 | 1097 |
| 1098 // Indicates that chrome was launched to service a search request in Windows 8. | 1098 // Indicates that chrome was launched to service a search request in Windows 8. |
| 1099 const char kWindows8Search[] = "windows8-search"; | 1099 const char kWindows8Search[] = "windows8-search"; |
| 1100 #endif // defined(OS_WIN) | 1100 #endif // defined(OS_WIN) |
| 1101 | 1101 |
| 1102 #if BUILDFLAG(ENABLE_PACKAGE_MASH_SERVICES) |
| 1103 // Used to enable Mus+ash. |
| 1104 const char kMash[] = "mash"; |
| 1105 #endif |
| 1106 |
| 1102 #if BUILDFLAG(ENABLE_PRINT_PREVIEW) && !defined(OFFICIAL_BUILD) | 1107 #if BUILDFLAG(ENABLE_PRINT_PREVIEW) && !defined(OFFICIAL_BUILD) |
| 1103 // Enables support to debug printing subsystem. | 1108 // Enables support to debug printing subsystem. |
| 1104 const char kDebugPrint[] = "debug-print"; | 1109 const char kDebugPrint[] = "debug-print"; |
| 1105 #endif | 1110 #endif |
| 1106 | 1111 |
| 1107 #if BUILDFLAG(ENABLE_PLUGINS) | 1112 #if BUILDFLAG(ENABLE_PLUGINS) |
| 1108 // Specifies comma-separated list of extension ids or hosts to grant | 1113 // Specifies comma-separated list of extension ids or hosts to grant |
| 1109 // access to CRX file system APIs. | 1114 // access to CRX file system APIs. |
| 1110 const char kAllowNaClCrxFsAPI[] = "allow-nacl-crxfs-api"; | 1115 const char kAllowNaClCrxFsAPI[] = "allow-nacl-crxfs-api"; |
| 1111 | 1116 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1162 | 1167 |
| 1163 // ----------------------------------------------------------------------------- | 1168 // ----------------------------------------------------------------------------- |
| 1164 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1169 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
| 1165 // | 1170 // |
| 1166 // You were going to just dump your switches here, weren't you? Instead, please | 1171 // You were going to just dump your switches here, weren't you? Instead, please |
| 1167 // put them in alphabetical order above, or in order inside the appropriate | 1172 // put them in alphabetical order above, or in order inside the appropriate |
| 1168 // ifdef at the bottom. The order should match the header. | 1173 // ifdef at the bottom. The order should match the header. |
| 1169 // ----------------------------------------------------------------------------- | 1174 // ----------------------------------------------------------------------------- |
| 1170 | 1175 |
| 1171 } // namespace switches | 1176 } // namespace switches |
| OLD | NEW |