| 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 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 453 const char kEnableTabAudioMuting[] = "enable-tab-audio-muting"; | 453 const char kEnableTabAudioMuting[] = "enable-tab-audio-muting"; |
| 454 | 454 |
| 455 // Enables fanciful thumbnail processing. Used with NTP for | 455 // Enables fanciful thumbnail processing. Used with NTP for |
| 456 // instant-extended-api, where thumbnails are generally smaller. | 456 // instant-extended-api, where thumbnails are generally smaller. |
| 457 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; | 457 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; |
| 458 | 458 |
| 459 // Enables Alternate-Protocol when the port is user controlled (> 1024). | 459 // Enables Alternate-Protocol when the port is user controlled (> 1024). |
| 460 const char kEnableUserAlternateProtocolPorts[] = | 460 const char kEnableUserAlternateProtocolPorts[] = |
| 461 "enable-user-controlled-alternate-protocol-ports"; | 461 "enable-user-controlled-alternate-protocol-ports"; |
| 462 | 462 |
| 463 // Enables a new "web app" style frame for hosted apps (including bookmark | |
| 464 // apps). | |
| 465 const char kEnableWebAppFrame[] = "enable-web-app-frame"; | |
| 466 | |
| 467 // Enables Web Notification custom layouts. | 463 // Enables Web Notification custom layouts. |
| 468 const char kEnableWebNotificationCustomLayouts[] = | 464 const char kEnableWebNotificationCustomLayouts[] = |
| 469 "enable-web-notification-custom-layouts"; | 465 "enable-web-notification-custom-layouts"; |
| 470 | 466 |
| 471 // If the WebRTC logging private API is active, enables WebRTC event logging. | 467 // If the WebRTC logging private API is active, enables WebRTC event logging. |
| 472 const char kEnableWebRtcEventLoggingFromExtension[] = | 468 const char kEnableWebRtcEventLoggingFromExtension[] = |
| 473 "enable-webrtc-event-logging-from-extension"; | 469 "enable-webrtc-event-logging-from-extension"; |
| 474 | 470 |
| 475 // Name of the command line flag to force content verification to be on in one | 471 // Name of the command line flag to force content verification to be on in one |
| 476 // of various modes. | 472 // of various modes. |
| (...skipping 792 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1269 | 1265 |
| 1270 // ----------------------------------------------------------------------------- | 1266 // ----------------------------------------------------------------------------- |
| 1271 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1267 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
| 1272 // | 1268 // |
| 1273 // You were going to just dump your switches here, weren't you? Instead, please | 1269 // You were going to just dump your switches here, weren't you? Instead, please |
| 1274 // put them in alphabetical order above, or in order inside the appropriate | 1270 // put them in alphabetical order above, or in order inside the appropriate |
| 1275 // ifdef at the bottom. The order should match the header. | 1271 // ifdef at the bottom. The order should match the header. |
| 1276 // ----------------------------------------------------------------------------- | 1272 // ----------------------------------------------------------------------------- |
| 1277 | 1273 |
| 1278 } // namespace switches | 1274 } // namespace switches |
| OLD | NEW |