OLD | NEW |
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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 | 8 |
9 namespace switches { | 9 namespace switches { |
10 | 10 |
(...skipping 514 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
525 | 525 |
526 // On Windows, converts the page to the currently-installed monitor profile. | 526 // On Windows, converts the page to the currently-installed monitor profile. |
527 // This does NOT enable color management for images. The source is still assumed | 527 // This does NOT enable color management for images. The source is still assumed |
528 // to be sRGB. | 528 // to be sRGB. |
529 const wchar_t kEnableMonitorProfile[] = L"enable-monitor-profile"; | 529 const wchar_t kEnableMonitorProfile[] = L"enable-monitor-profile"; |
530 | 530 |
531 // Enable WebKit's XSSAuditor to mitigate reflective XSS. The XSSAuditor is | 531 // Enable WebKit's XSSAuditor to mitigate reflective XSS. The XSSAuditor is |
532 // still experimental. | 532 // still experimental. |
533 const wchar_t kEnableXSSAuditor[] = L"enable-xss-auditor"; | 533 const wchar_t kEnableXSSAuditor[] = L"enable-xss-auditor"; |
534 | 534 |
| 535 // Enables the new Tabstrip on Windows. |
| 536 const wchar_t kEnableTabtastic2[] = L"enable-tabtastic2"; |
| 537 |
535 } // namespace switches | 538 } // namespace switches |
OLD | NEW |