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

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

Issue 211543008: Show a modified outdated upgrade Bubble for non-enterprise users without auto-update (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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 1195 matching lines...) Expand 10 before | Expand all | Expand 10 after
1206 1206
1207 // Simulates an update being available. 1207 // Simulates an update being available.
1208 const char kSimulateUpgrade[] = "simulate-upgrade"; 1208 const char kSimulateUpgrade[] = "simulate-upgrade";
1209 1209
1210 // Simulates a critical update being available. 1210 // Simulates a critical update being available.
1211 const char kSimulateCriticalUpdate[] = "simulate-critical-update"; 1211 const char kSimulateCriticalUpdate[] = "simulate-critical-update";
1212 1212
1213 // Simulates that current version is outdated. 1213 // Simulates that current version is outdated.
1214 const char kSimulateOutdated[] = "simulate-outdated"; 1214 const char kSimulateOutdated[] = "simulate-outdated";
1215 1215
1216 // Simulates that current version is outdated and auto-update is off.
1217 const char kSimulateOutdatedNoAU[] = "simulate-outdated-no-au";
1218
1216 // Replaces the buffered data source for <audio> and <video> with a simplified 1219 // Replaces the buffered data source for <audio> and <video> with a simplified
1217 // resource loader that downloads the entire resource into memory. 1220 // resource loader that downloads the entire resource into memory.
1218 1221
1219 // Second origin that can be used for the spdy proxy. 1222 // Second origin that can be used for the spdy proxy.
1220 const char kSpdyProxyAuthFallback[] = "spdy-proxy-auth-fallback"; 1223 const char kSpdyProxyAuthFallback[] = "spdy-proxy-auth-fallback";
1221 1224
1222 // Origin for which SpdyProxy authentication is supported. 1225 // Origin for which SpdyProxy authentication is supported.
1223 const char kSpdyProxyAuthOrigin[] = "spdy-proxy-auth-origin"; 1226 const char kSpdyProxyAuthOrigin[] = "spdy-proxy-auth-origin";
1224 1227
1225 // Authentication string for the data reduction proxy. 1228 // Authentication string for the data reduction proxy.
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after
1534 1537
1535 // ----------------------------------------------------------------------------- 1538 // -----------------------------------------------------------------------------
1536 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1539 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1537 // 1540 //
1538 // You were going to just dump your switches here, weren't you? Instead, please 1541 // You were going to just dump your switches here, weren't you? Instead, please
1539 // put them in alphabetical order above, or in order inside the appropriate 1542 // put them in alphabetical order above, or in order inside the appropriate
1540 // ifdef at the bottom. The order should match the header. 1543 // ifdef at the bottom. The order should match the header.
1541 // ----------------------------------------------------------------------------- 1544 // -----------------------------------------------------------------------------
1542 1545
1543 } // namespace switches 1546 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698