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

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

Issue 10919086: Wired chrome.rtcPrivate API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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
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 472 matching lines...) Expand 10 before | Expand all | Expand 10 after
483 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; 483 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy";
484 484
485 // Enables establishing a backup TCP connection if a specified timeout is 485 // Enables establishing a backup TCP connection if a specified timeout is
486 // exceeded. 486 // exceeded.
487 const char kEnableConnectBackupJobs[] = "enable-connect-backup-jobs"; 487 const char kEnableConnectBackupJobs[] = "enable-connect-backup-jobs";
488 488
489 // Enables fetching the user's contacts from Google and showing them in the 489 // Enables fetching the user's contacts from Google and showing them in the
490 // Chrome OS apps list. 490 // Chrome OS apps list.
491 const char kEnableContacts[] = "enable-contacts"; 491 const char kEnableContacts[] = "enable-contacts";
492 492
493 // Passes extension ID for private RTC api calls.
494 const char kTestRtcExtensionId[] = "test-rtc-extension";
Mihai Parparita -not on Chrome 2012/09/05 04:42:47 Do you need an additional flag for this? kWhitelis
zel 2012/09/05 18:50:33 I used to send this event only to that particular
495
493 // Enables web developers to create apps for Chrome without using crx packages. 496 // Enables web developers to create apps for Chrome without using crx packages.
494 const char kEnableCrxlessWebApps[] = "enable-crxless-web-apps"; 497 const char kEnableCrxlessWebApps[] = "enable-crxless-web-apps";
495 498
496 // If true devtools experimental settings are enabled. 499 // If true devtools experimental settings are enabled.
497 const char kEnableDevToolsExperiments[] = "enable-devtools-experiments"; 500 const char kEnableDevToolsExperiments[] = "enable-devtools-experiments";
498 501
499 // Enables experimental discovery slots in New Tab page. 502 // Enables experimental discovery slots in New Tab page.
500 const char kEnableDiscoveryInNewTabPage[] = "enable-discovery-ntp"; 503 const char kEnableDiscoveryInNewTabPage[] = "enable-discovery-ntp";
501 504
502 // Enables extensions to be easily installed from sites other than the web 505 // Enables extensions to be easily installed from sites other than the web
(...skipping 1092 matching lines...) Expand 10 before | Expand all | Expand 10 after
1595 1598
1596 // ----------------------------------------------------------------------------- 1599 // -----------------------------------------------------------------------------
1597 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1600 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1598 // 1601 //
1599 // You were going to just dump your switches here, weren't you? Instead, please 1602 // You were going to just dump your switches here, weren't you? Instead, please
1600 // put them in alphabetical order above, or in order inside the appropriate 1603 // put them in alphabetical order above, or in order inside the appropriate
1601 // ifdef at the bottom. The order should match the header. 1604 // ifdef at the bottom. The order should match the header.
1602 // ----------------------------------------------------------------------------- 1605 // -----------------------------------------------------------------------------
1603 1606
1604 } // namespace switches 1607 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698