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

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

Issue 1289423002: Add webusb notification UI code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed OpenURL member function from WebUsbBrowserClient Created 5 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
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 538 matching lines...) Expand 10 before | Expand all | Expand 10 after
549 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; 549 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting";
550 550
551 // Enables Alternate-Protocol when the port is user controlled (> 1024). 551 // Enables Alternate-Protocol when the port is user controlled (> 1024).
552 const char kEnableUserAlternateProtocolPorts[] = 552 const char kEnableUserAlternateProtocolPorts[] =
553 "enable-user-controlled-alternate-protocol-ports"; 553 "enable-user-controlled-alternate-protocol-ports";
554 554
555 // Enables a new "web app" style frame for hosted apps (including bookmark 555 // Enables a new "web app" style frame for hosted apps (including bookmark
556 // apps). 556 // apps).
557 extern const char kEnableWebAppFrame[] = "enable-web-app-frame"; 557 extern const char kEnableWebAppFrame[] = "enable-web-app-frame";
558 558
559 extern const char kEnableWebUsbNotifications[] = "enable-webusb-notifications";
560
559 // Enables synchronizing WiFi credentials across devices, using Chrome Sync. 561 // Enables synchronizing WiFi credentials across devices, using Chrome Sync.
560 const char kEnableWifiCredentialSync[] = "enable-wifi-credential-sync"; 562 const char kEnableWifiCredentialSync[] = "enable-wifi-credential-sync";
561 563
562 // Values for the kExtensionContentVerification flag. 564 // Values for the kExtensionContentVerification flag.
563 // See ContentVerifierDelegate::Mode for more explanation. 565 // See ContentVerifierDelegate::Mode for more explanation.
564 const char kExtensionContentVerificationBootstrap[] = "bootstrap"; 566 const char kExtensionContentVerificationBootstrap[] = "bootstrap";
565 const char kExtensionContentVerificationEnforceStrict[] = "enforce_strict"; 567 const char kExtensionContentVerificationEnforceStrict[] = "enforce_strict";
566 const char kExtensionContentVerificationEnforce[] = "enforce"; 568 const char kExtensionContentVerificationEnforce[] = "enforce";
567 569
568 // Name of the command line flag to force content verification to be on in one 570 // Name of the command line flag to force content verification to be on in one
(...skipping 850 matching lines...) Expand 10 before | Expand all | Expand 10 after
1419 1421
1420 // ----------------------------------------------------------------------------- 1422 // -----------------------------------------------------------------------------
1421 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1423 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1422 // 1424 //
1423 // You were going to just dump your switches here, weren't you? Instead, please 1425 // You were going to just dump your switches here, weren't you? Instead, please
1424 // put them in alphabetical order above, or in order inside the appropriate 1426 // put them in alphabetical order above, or in order inside the appropriate
1425 // ifdef at the bottom. The order should match the header. 1427 // ifdef at the bottom. The order should match the header.
1426 // ----------------------------------------------------------------------------- 1428 // -----------------------------------------------------------------------------
1427 1429
1428 } // namespace switches 1430 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698