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

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

Issue 10532048: [cros] Initial WebRTC-enabled implementation of user image picker on OOBE. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Revert ImageDecoder changes. Created 8 years, 6 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 517 matching lines...) Expand 10 before | Expand all | Expand 10 after
528 528
529 // By default, cookies are not allowed on file://. They are needed for testing, 529 // By default, cookies are not allowed on file://. They are needed for testing,
530 // for example page cycler and layout tests. See bug 1157243. 530 // for example page cycler and layout tests. See bug 1157243.
531 const char kEnableFileCookies[] = "enable-file-cookies"; 531 const char kEnableFileCookies[] = "enable-file-cookies";
532 532
533 // Enable HTTP pipelining. Attempt to pipeline HTTP connections. Heuristics will 533 // Enable HTTP pipelining. Attempt to pipeline HTTP connections. Heuristics will
534 // try to figure out if pipelining can be used for a given host and request. 534 // try to figure out if pipelining can be used for a given host and request.
535 // Without this flag, pipelining will never be used. 535 // Without this flag, pipelining will never be used.
536 const char kEnableHttpPipelining[] = "enable-http-pipelining"; 536 const char kEnableHttpPipelining[] = "enable-http-pipelining";
537 537
538 // Enables new WebRTC implementation of user image picker.
539 const char kEnableHtml5Camera[] = "enable-html5-camera";
540
538 // Enables IPv6 support, even if probes suggest that it may not be fully 541 // Enables IPv6 support, even if probes suggest that it may not be fully
539 // supported. Some probes may require internet connections, and this flag will 542 // supported. Some probes may require internet connections, and this flag will
540 // allow support independent of application testing. This flag overrides 543 // allow support independent of application testing. This flag overrides
541 // "disable-ipv6" which appears elswhere in this file. 544 // "disable-ipv6" which appears elswhere in this file.
542 const char kEnableIPv6[] = "enable-ipv6"; 545 const char kEnableIPv6[] = "enable-ipv6";
543 546
544 /// Enables the IPC fuzzer for reliability testing 547 /// Enables the IPC fuzzer for reliability testing
545 const char kEnableIPCFuzzing[] = "enable-ipc-fuzzing"; 548 const char kEnableIPCFuzzing[] = "enable-ipc-fuzzing";
546 549
547 // Enables IP Pooling within the networks stack (SPDY only). When a connection 550 // Enables IP Pooling within the networks stack (SPDY only). When a connection
(...skipping 908 matching lines...) Expand 10 before | Expand all | Expand 10 after
1456 1459
1457 // ----------------------------------------------------------------------------- 1460 // -----------------------------------------------------------------------------
1458 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1461 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1459 // 1462 //
1460 // You were going to just dump your switches here, weren't you? Instead, please 1463 // You were going to just dump your switches here, weren't you? Instead, please
1461 // put them in alphabetical order above, or in order inside the appropriate 1464 // put them in alphabetical order above, or in order inside the appropriate
1462 // ifdef at the bottom. The order should match the header. 1465 // ifdef at the bottom. The order should match the header.
1463 // ----------------------------------------------------------------------------- 1466 // -----------------------------------------------------------------------------
1464 1467
1465 } // namespace switches 1468 } // 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