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

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

Issue 11440020: Add an outdated upgrade bubble view. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed OWNERS comments... Created 7 years, 10 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 1191 matching lines...) Expand 10 before | Expand all | Expand 10 after
1202 // specified. 1202 // specified.
1203 const char kSilentDumpOnDCHECK[] = "silent-dump-on-dcheck"; 1203 const char kSilentDumpOnDCHECK[] = "silent-dump-on-dcheck";
1204 1204
1205 // Causes Chrome to launch without opening any windows by default. Useful if 1205 // Causes Chrome to launch without opening any windows by default. Useful if
1206 // one wishes to use Chrome as an ash server. 1206 // one wishes to use Chrome as an ash server.
1207 const char kSilentLaunch[] = "silent-launch"; 1207 const char kSilentLaunch[] = "silent-launch";
1208 1208
1209 // Simulates an update being available. 1209 // Simulates an update being available.
1210 const char kSimulateUpgrade[] = "simulate-upgrade"; 1210 const char kSimulateUpgrade[] = "simulate-upgrade";
1211 1211
1212 // Simulates a critical update being available.
1213 const char kSimulateCriticalUpdate[] = "simulate-critical-update";
1214
1215 // Simulates that current version is outdated.
1216 const char kSimulateOutdated[] = "simulate-outdated";
1217
1212 // Replaces the buffered data source for <audio> and <video> with a simplified 1218 // Replaces the buffered data source for <audio> and <video> with a simplified
1213 // resource loader that downloads the entire resource into memory. 1219 // resource loader that downloads the entire resource into memory.
1214 1220
1215 // Socket reuse policy. The value should be of type enum 1221 // Socket reuse policy. The value should be of type enum
1216 // ClientSocketReusePolicy. 1222 // ClientSocketReusePolicy.
1217 const char kSocketReusePolicy[] = "socket-reuse-policy"; 1223 const char kSocketReusePolicy[] = "socket-reuse-policy";
1218 1224
1219 // Origin for which SpdyProxy authentication is supported. 1225 // Origin for which SpdyProxy authentication is supported.
1220 const char kSpdyProxyOrigin[] = "spdy-proxy-origin"; 1226 const char kSpdyProxyOrigin[] = "spdy-proxy-origin";
1221 1227
(...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after
1649 1655
1650 // ----------------------------------------------------------------------------- 1656 // -----------------------------------------------------------------------------
1651 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1657 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1652 // 1658 //
1653 // You were going to just dump your switches here, weren't you? Instead, please 1659 // You were going to just dump your switches here, weren't you? Instead, please
1654 // put them in alphabetical order above, or in order inside the appropriate 1660 // put them in alphabetical order above, or in order inside the appropriate
1655 // ifdef at the bottom. The order should match the header. 1661 // ifdef at the bottom. The order should match the header.
1656 // ----------------------------------------------------------------------------- 1662 // -----------------------------------------------------------------------------
1657 1663
1658 } // namespace switches 1664 } // 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