Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(139)

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 10823002: Enable the Website Setting UI by default on Windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Enable the Website Settings by default on windows. Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1469 matching lines...) Expand 10 before | Expand all | Expand 10 after
1480 1480
1481 // Uses mock keychain for testing purposes, which prevents blocking dialogs 1481 // Uses mock keychain for testing purposes, which prevents blocking dialogs
1482 // from causing timeouts. 1482 // from causing timeouts.
1483 const char kUseMockKeychain[] = "use-mock-keychain"; 1483 const char kUseMockKeychain[] = "use-mock-keychain";
1484 #endif 1484 #endif
1485 1485
1486 #if defined(OS_WIN) 1486 #if defined(OS_WIN)
1487 // Disables profile desktop shortcuts handling, preventing their creation, 1487 // Disables profile desktop shortcuts handling, preventing their creation,
1488 // modification or removal. 1488 // modification or removal.
1489 const char kDisableDesktopShortcuts[] = "disable-desktop-shortcuts"; 1489 const char kDisableDesktopShortcuts[] = "disable-desktop-shortcuts";
1490
1491 // Enable Website Settings. The Website Settings UI will replace the Page Info
1492 // Bubble.
1493 const char kDisableWebsiteSettings[] = "disable-website-settings";
1490 #endif 1494 #endif
1491 1495
1492 #if defined(USE_AURA) 1496 #if defined(USE_AURA)
1493 // Use NativeTabContentsViewAura instead of the default implementation. 1497 // Use NativeTabContentsViewAura instead of the default implementation.
1494 const char kDisableTCVA[] = "disable-tcva"; 1498 const char kDisableTCVA[] = "disable-tcva";
1495 1499
1496 // Opens an Ash window on startup. 1500 // Opens an Ash window on startup.
1497 extern const char kOpenAsh[] = "open-ash"; 1501 extern const char kOpenAsh[] = "open-ash";
1498 #endif 1502 #endif
1499 1503
(...skipping 18 matching lines...) Expand all
1518 1522
1519 // ----------------------------------------------------------------------------- 1523 // -----------------------------------------------------------------------------
1520 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1524 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1521 // 1525 //
1522 // You were going to just dump your switches here, weren't you? Instead, please 1526 // You were going to just dump your switches here, weren't you? Instead, please
1523 // put them in alphabetical order above, or in order inside the appropriate 1527 // put them in alphabetical order above, or in order inside the appropriate
1524 // ifdef at the bottom. The order should match the header. 1528 // ifdef at the bottom. The order should match the header.
1525 // ----------------------------------------------------------------------------- 1529 // -----------------------------------------------------------------------------
1526 1530
1527 } // namespace switches 1531 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698