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 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
311 | 311 |
312 // Enables searching for people from the apps list search box. | 312 // Enables searching for people from the apps list search box. |
313 const char kDisablePeopleSearch[] = "disable-people-search"; | 313 const char kDisablePeopleSearch[] = "disable-people-search"; |
314 | 314 |
315 // Don't use bubbles for content permissions requests instead of infobars. | 315 // Don't use bubbles for content permissions requests instead of infobars. |
316 const char kDisablePermissionsBubbles[] = "disable-permissions-bubbles"; | 316 const char kDisablePermissionsBubbles[] = "disable-permissions-bubbles"; |
317 | 317 |
318 // Disable pop-up blocking. | 318 // Disable pop-up blocking. |
319 const char kDisablePopupBlocking[] = "disable-popup-blocking"; | 319 const char kDisablePopupBlocking[] = "disable-popup-blocking"; |
320 | 320 |
321 // Disables the usage of Portable Native Client. | |
322 const char kDisablePnacl[] = "disable-pnacl"; | |
323 | |
324 // Disable speculative TCP/IP preconnection. | 321 // Disable speculative TCP/IP preconnection. |
325 const char kDisablePreconnect[] = "disable-preconnect"; | 322 const char kDisablePreconnect[] = "disable-preconnect"; |
326 | 323 |
327 // Disable prerendering based on local browsing history. | 324 // Disable prerendering based on local browsing history. |
328 const char kDisablePrerenderLocalPredictor[] = | 325 const char kDisablePrerenderLocalPredictor[] = |
329 "disable-prerender-local-predictor"; | 326 "disable-prerender-local-predictor"; |
330 | 327 |
331 // Disables print preview (For testing, and for users who don't like us. :[ ) | 328 // Disables print preview (For testing, and for users who don't like us. :[ ) |
332 const char kDisablePrintPreview[] = "disable-print-preview"; | 329 const char kDisablePrintPreview[] = "disable-print-preview"; |
333 | 330 |
(...skipping 1073 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1407 | 1404 |
1408 // ----------------------------------------------------------------------------- | 1405 // ----------------------------------------------------------------------------- |
1409 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1406 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1410 // | 1407 // |
1411 // You were going to just dump your switches here, weren't you? Instead, please | 1408 // You were going to just dump your switches here, weren't you? Instead, please |
1412 // put them in alphabetical order above, or in order inside the appropriate | 1409 // put them in alphabetical order above, or in order inside the appropriate |
1413 // ifdef at the bottom. The order should match the header. | 1410 // ifdef at the bottom. The order should match the header. |
1414 // ----------------------------------------------------------------------------- | 1411 // ----------------------------------------------------------------------------- |
1415 | 1412 |
1416 } // namespace switches | 1413 } // namespace switches |
OLD | NEW |