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

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

Issue 23874015: Implement people search. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | 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 641 matching lines...) Expand 10 before | Expand all | Expand 10 after
652 const char kEnableOmniboxAutoCompletionForIme[] = 652 const char kEnableOmniboxAutoCompletionForIme[] =
653 "enable-omnibox-auto-completion-for-ime"; 653 "enable-omnibox-auto-completion-for-ime";
654 654
655 // Enables panels (always on-top docked pop-up windows). 655 // Enables panels (always on-top docked pop-up windows).
656 const char kEnablePanels[] = "enable-panels"; 656 const char kEnablePanels[] = "enable-panels";
657 657
658 // Enables password generation when we detect that the user is going through 658 // Enables password generation when we detect that the user is going through
659 // account creation. 659 // account creation.
660 const char kEnablePasswordGeneration[] = "enable-password-generation"; 660 const char kEnablePasswordGeneration[] = "enable-password-generation";
661 661
662 // Enables searching for people from the apps list search box.
663 const char kEnablePeopleSearch[] = "enable-people-search";
zel 2013/09/05 21:59:22 this should probably go in chromeos/chromeos_switc
rkc 2013/09/05 22:00:43 The feature works everywhere the apps_list does, s
664
662 // Disables the usage of Portable Native Client. 665 // Disables the usage of Portable Native Client.
663 const char kDisablePnacl[] = "disable-pnacl"; 666 const char kDisablePnacl[] = "disable-pnacl";
664 667
665 // Disables crash throttling for Portable Native Client. 668 // Disables crash throttling for Portable Native Client.
666 const char kDisablePnaclCrashThrottling[] = "disable-pnacl-crash-throttling"; 669 const char kDisablePnaclCrashThrottling[] = "disable-pnacl-crash-throttling";
667 670
668 // Disables the installation of Portable Native Client. 671 // Disables the installation of Portable Native Client.
669 const char kDisablePnaclInstall[] = "disable-pnacl-install"; 672 const char kDisablePnaclInstall[] = "disable-pnacl-install";
670 673
671 // Enables tracking of tasks in profiler for viewing via about:profiler. 674 // Enables tracking of tasks in profiler for viewing via about:profiler.
(...skipping 929 matching lines...) Expand 10 before | Expand all | Expand 10 after
1601 1604
1602 // ----------------------------------------------------------------------------- 1605 // -----------------------------------------------------------------------------
1603 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1606 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1604 // 1607 //
1605 // You were going to just dump your switches here, weren't you? Instead, please 1608 // You were going to just dump your switches here, weren't you? Instead, please
1606 // put them in alphabetical order above, or in order inside the appropriate 1609 // put them in alphabetical order above, or in order inside the appropriate
1607 // ifdef at the bottom. The order should match the header. 1610 // ifdef at the bottom. The order should match the header.
1608 // ----------------------------------------------------------------------------- 1611 // -----------------------------------------------------------------------------
1609 1612
1610 } // namespace switches 1613 } // 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