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

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

Issue 10377173: Do Keychain reauthorization at update time (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 7 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 1370 matching lines...) Expand 10 before | Expand all | Expand 10 after
1381 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) 1381 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS)
1382 // Specifies which password store to use (detect, default, gnome, kwallet). 1382 // Specifies which password store to use (detect, default, gnome, kwallet).
1383 const char kPasswordStore[] = "password-store"; 1383 const char kPasswordStore[] = "password-store";
1384 #endif 1384 #endif
1385 #endif // OS_POSIX 1385 #endif // OS_POSIX
1386 1386
1387 #if defined(OS_MACOSX) 1387 #if defined(OS_MACOSX)
1388 // Enables the tabs expose feature ( http://crbug.com/50307 ). 1388 // Enables the tabs expose feature ( http://crbug.com/50307 ).
1389 const char kEnableExposeForTabs[] = "enable-expose-for-tabs"; 1389 const char kEnableExposeForTabs[] = "enable-expose-for-tabs";
1390 1390
1391 // Performs Keychain reauthorization from the command line on behalf of a
1392 // special Keychain reauthorization stub executable. Used during auto-update.
1393 const char kKeychainReauthorize[] = "keychain-reauthorize";
1394
1391 // A process type (switches::kProcessType) that relaunches the browser. See 1395 // A process type (switches::kProcessType) that relaunches the browser. See
1392 // chrome/browser/mac/relauncher.h. 1396 // chrome/browser/mac/relauncher.h.
1393 const char kRelauncherProcess[] = "relauncher"; 1397 const char kRelauncherProcess[] = "relauncher";
1394 1398
1395 // Uses mock keychain for testing purposes, which prevents blocking dialogs 1399 // Uses mock keychain for testing purposes, which prevents blocking dialogs
1396 // from causing timeouts. 1400 // from causing timeouts.
1397 const char kUseMockKeychain[] = "use-mock-keychain"; 1401 const char kUseMockKeychain[] = "use-mock-keychain";
1398 #endif 1402 #endif
1399 1403
1400 #if !defined(OS_MACOSX) 1404 #if !defined(OS_MACOSX)
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
1445 1449
1446 // ----------------------------------------------------------------------------- 1450 // -----------------------------------------------------------------------------
1447 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1451 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1448 // 1452 //
1449 // You were going to just dump your switches here, weren't you? Instead, please 1453 // You were going to just dump your switches here, weren't you? Instead, please
1450 // put them in alphabetical order above, or in order inside the appropriate 1454 // put them in alphabetical order above, or in order inside the appropriate
1451 // ifdef at the bottom. The order should match the header. 1455 // ifdef at the bottom. The order should match the header.
1452 // ----------------------------------------------------------------------------- 1456 // -----------------------------------------------------------------------------
1453 1457
1454 } // namespace switches 1458 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698