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

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

Issue 10631010: Change style of ConstrainedWindowViews. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove extra "private" Created 8 years, 5 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 501 matching lines...) Expand 10 before | Expand all | Expand 10 after
512 // Enables logging for extension activity. 512 // Enables logging for extension activity.
513 const char kEnableExtensionActivityLogging[] = 513 const char kEnableExtensionActivityLogging[] =
514 "enable-extension-activity-logging"; 514 "enable-extension-activity-logging";
515 515
516 // Enables the extension activity UI. 516 // Enables the extension activity UI.
517 const char kEnableExtensionActivityUI[] = "enable-extension-activity-ui"; 517 const char kEnableExtensionActivityUI[] = "enable-extension-activity-ui";
518 518
519 // Enables experimental timeline API. 519 // Enables experimental timeline API.
520 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; 520 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api";
521 521
522 // Applies a new frameless window style to any dialog based on
523 // ConstrainedWindowViews.
524 const char kEnableFramelessConstrainedDialogs[] =
525 "enable-frameless-constrained-dialogs";
526
522 // By default, cookies are not allowed on file://. They are needed for testing, 527 // By default, cookies are not allowed on file://. They are needed for testing,
523 // for example page cycler and layout tests. See bug 1157243. 528 // for example page cycler and layout tests. See bug 1157243.
524 const char kEnableFileCookies[] = "enable-file-cookies"; 529 const char kEnableFileCookies[] = "enable-file-cookies";
525 530
526 // Enable HTTP pipelining. Attempt to pipeline HTTP connections. Heuristics will 531 // Enable HTTP pipelining. Attempt to pipeline HTTP connections. Heuristics will
527 // try to figure out if pipelining can be used for a given host and request. 532 // try to figure out if pipelining can be used for a given host and request.
528 // Without this flag, pipelining will never be used. 533 // Without this flag, pipelining will never be used.
529 const char kEnableHttpPipelining[] = "enable-http-pipelining"; 534 const char kEnableHttpPipelining[] = "enable-http-pipelining";
530 535
531 // Enables new WebRTC implementation of user image picker. 536 // Enables new WebRTC implementation of user image picker.
(...skipping 961 matching lines...) Expand 10 before | Expand all | Expand 10 after
1493 1498
1494 // ----------------------------------------------------------------------------- 1499 // -----------------------------------------------------------------------------
1495 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1500 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1496 // 1501 //
1497 // You were going to just dump your switches here, weren't you? Instead, please 1502 // You were going to just dump your switches here, weren't you? Instead, please
1498 // put them in alphabetical order above, or in order inside the appropriate 1503 // put them in alphabetical order above, or in order inside the appropriate
1499 // ifdef at the bottom. The order should match the header. 1504 // ifdef at the bottom. The order should match the header.
1500 // ----------------------------------------------------------------------------- 1505 // -----------------------------------------------------------------------------
1501 1506
1502 } // namespace switches 1507 } // 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