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

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

Issue 5460002: Add a missing comment to a switch I recently added. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years 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 | « no previous file | 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 const char kAppId[] = "app-id"; 52 const char kAppId[] = "app-id";
53 53
54 // Specifying this flag allows the webstorePrivate APIs to return browser (aka 54 // Specifying this flag allows the webstorePrivate APIs to return browser (aka
55 // sync) login tokens to be used for auto-login in the Web Store (normally they 55 // sync) login tokens to be used for auto-login in the Web Store (normally they
56 // do not). 56 // do not).
57 const char kAppsGalleryReturnTokens[] = "apps-gallery-return-tokens"; 57 const char kAppsGalleryReturnTokens[] = "apps-gallery-return-tokens";
58 58
59 // The URL to use for the gallery link in the app launcher. 59 // The URL to use for the gallery link in the app launcher.
60 const char kAppsGalleryURL[] = "apps-gallery-url"; 60 const char kAppsGalleryURL[] = "apps-gallery-url";
61 61
62 // The update url used by gallery/webstore extensions.
62 const char kAppsGalleryUpdateURL[] = "apps-gallery-update-url"; 63 const char kAppsGalleryUpdateURL[] = "apps-gallery-update-url";
63 64
64 // Disable throbber for extension apps. 65 // Disable throbber for extension apps.
65 const char kAppsNoThrob[] = "apps-no-throb"; 66 const char kAppsNoThrob[] = "apps-no-throb";
66 67
67 // Whitelist of servers that Negotiate will generate delegated Kerberos tickets 68 // Whitelist of servers that Negotiate will generate delegated Kerberos tickets
68 // for. 69 // for.
69 const char kAuthNegotiateDelegateWhitelist[] = 70 const char kAuthNegotiateDelegateWhitelist[] =
70 "auth-negotiate-delegate-whitelist"; 71 "auth-negotiate-delegate-whitelist";
71 72
(...skipping 1288 matching lines...) Expand 10 before | Expand all | Expand 10 after
1360 1361
1361 // ----------------------------------------------------------------------------- 1362 // -----------------------------------------------------------------------------
1362 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1363 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1363 // 1364 //
1364 // You were going to just dump your switches here, weren't you? Instead, 1365 // You were going to just dump your switches here, weren't you? Instead,
1365 // please put them in alphabetical order above, or in order inside the 1366 // please put them in alphabetical order above, or in order inside the
1366 // appropriate ifdef at the bottom. The order should match the header. 1367 // appropriate ifdef at the bottom. The order should match the header.
1367 // ----------------------------------------------------------------------------- 1368 // -----------------------------------------------------------------------------
1368 1369
1369 } // namespace switches 1370 } // namespace switches
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698