| 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 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 367 | 367 |
| 368 // Prevents the URLs of BackgroundContents from being remembered and | 368 // Prevents the URLs of BackgroundContents from being remembered and |
| 369 // re-launched when the browser restarts. | 369 // re-launched when the browser restarts. |
| 370 const char kDisableRestoreBackgroundContents[] = | 370 const char kDisableRestoreBackgroundContents[] = |
| 371 "disable-restore-background-contents"; | 371 "disable-restore-background-contents"; |
| 372 | 372 |
| 373 // Disables restoring session state (cookies, session storage, etc.) when | 373 // Disables restoring session state (cookies, session storage, etc.) when |
| 374 // restoring the browsing session. | 374 // restoring the browsing session. |
| 375 const char kDisableRestoreSessionState[] = "disable-restore-session-state"; | 375 const char kDisableRestoreSessionState[] = "disable-restore-session-state"; |
| 376 | 376 |
| 377 // Disables throttling prints initiated by scripts. |
| 378 const char kDisableScriptedPrintThrottling[] = |
| 379 "disable-scripted-print-throttling"; |
| 380 |
| 377 // Disables syncing browser data to a Google Account. | 381 // Disables syncing browser data to a Google Account. |
| 378 const char kDisableSync[] = "disable-sync"; | 382 const char kDisableSync[] = "disable-sync"; |
| 379 | 383 |
| 380 // Disables syncing of app settings. | 384 // Disables syncing of app settings. |
| 381 const char kDisableSyncAppSettings[] = "disable-sync-app-settings"; | 385 const char kDisableSyncAppSettings[] = "disable-sync-app-settings"; |
| 382 | 386 |
| 383 // Disables syncing of apps. | 387 // Disables syncing of apps. |
| 384 const char kDisableSyncApps[] = "disable-sync-apps"; | 388 const char kDisableSyncApps[] = "disable-sync-apps"; |
| 385 | 389 |
| 386 // Disable syncing app notifications. | 390 // Disable syncing app notifications. |
| (...skipping 1217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1604 | 1608 |
| 1605 // ----------------------------------------------------------------------------- | 1609 // ----------------------------------------------------------------------------- |
| 1606 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1610 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1607 // | 1611 // |
| 1608 // You were going to just dump your switches here, weren't you? Instead, please | 1612 // You were going to just dump your switches here, weren't you? Instead, please |
| 1609 // put them in alphabetical order above, or in order inside the appropriate | 1613 // put them in alphabetical order above, or in order inside the appropriate |
| 1610 // ifdef at the bottom. The order should match the header. | 1614 // ifdef at the bottom. The order should match the header. |
| 1611 // ----------------------------------------------------------------------------- | 1615 // ----------------------------------------------------------------------------- |
| 1612 | 1616 |
| 1613 } // namespace switches | 1617 } // namespace switches |
| OLD | NEW |