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 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
368 const char kDisableSavePasswordBubble[] = "disable-save-password-bubble"; | 368 const char kDisableSavePasswordBubble[] = "disable-save-password-bubble"; |
369 | 369 |
370 // Disables throttling prints initiated by scripts. | 370 // Disables throttling prints initiated by scripts. |
371 const char kDisableScriptedPrintThrottling[] = | 371 const char kDisableScriptedPrintThrottling[] = |
372 "disable-scripted-print-throttling"; | 372 "disable-scripted-print-throttling"; |
373 | 373 |
374 // Disables the "search button in omnibox" experiment. | 374 // Disables the "search button in omnibox" experiment. |
375 const char kDisableSearchButtonInOmnibox[] = | 375 const char kDisableSearchButtonInOmnibox[] = |
376 "disable-search-button-in-omnibox"; | 376 "disable-search-button-in-omnibox"; |
377 | 377 |
| 378 // Disables using bubbles for session restore request. |
| 379 const char kDisableSessionCrashedBubble[] = "disable-session-crashed-bubble"; |
| 380 |
378 // Disable SPDY/3.1. This is a temporary testing flag. | 381 // Disable SPDY/3.1. This is a temporary testing flag. |
379 const char kDisableSpdy31[] = "disable-spdy31"; | 382 const char kDisableSpdy31[] = "disable-spdy31"; |
380 | 383 |
381 // Disables the suggestions service. | 384 // Disables the suggestions service. |
382 const char kDisableSuggestionsService[] = "disable-suggestions-service"; | 385 const char kDisableSuggestionsService[] = "disable-suggestions-service"; |
383 | 386 |
384 // Disables syncing browser data to a Google Account. | 387 // Disables syncing browser data to a Google Account. |
385 const char kDisableSync[] = "disable-sync"; | 388 const char kDisableSync[] = "disable-sync"; |
386 | 389 |
387 // Disable synced notifications. | 390 // Disable synced notifications. |
(...skipping 1086 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1474 | 1477 |
1475 // ----------------------------------------------------------------------------- | 1478 // ----------------------------------------------------------------------------- |
1476 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1479 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1477 // | 1480 // |
1478 // You were going to just dump your switches here, weren't you? Instead, please | 1481 // You were going to just dump your switches here, weren't you? Instead, please |
1479 // put them in alphabetical order above, or in order inside the appropriate | 1482 // put them in alphabetical order above, or in order inside the appropriate |
1480 // ifdef at the bottom. The order should match the header. | 1483 // ifdef at the bottom. The order should match the header. |
1481 // ----------------------------------------------------------------------------- | 1484 // ----------------------------------------------------------------------------- |
1482 | 1485 |
1483 } // namespace switches | 1486 } // namespace switches |
OLD | NEW |