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

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

Issue 790793010: Removing --disable-people-search flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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
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 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 const char kDisableOutOfProcessPdf[] = "disable-out-of-process-pdf"; 285 const char kDisableOutOfProcessPdf[] = "disable-out-of-process-pdf";
286 286
287 // Disable the setting to prompt the user for their OS account password before 287 // Disable the setting to prompt the user for their OS account password before
288 // revealing plaintext passwords in the password manager. 288 // revealing plaintext passwords in the password manager.
289 const char kDisablePasswordManagerReauthentication[] = 289 const char kDisablePasswordManagerReauthentication[] =
290 "disable-password-manager-reauthentication"; 290 "disable-password-manager-reauthentication";
291 291
292 // Disable the new material UI - requires out of process PDF plugin. 292 // Disable the new material UI - requires out of process PDF plugin.
293 const char kDisablePdfMaterialUI[] = "disable-pdf-material-ui"; 293 const char kDisablePdfMaterialUI[] = "disable-pdf-material-ui";
294 294
295 // Enables searching for people from the apps list search box.
296 const char kDisablePeopleSearch[] = "disable-people-search";
297
298 // Don't use bubbles for content permissions requests instead of infobars. 295 // Don't use bubbles for content permissions requests instead of infobars.
299 const char kDisablePermissionsBubbles[] = "disable-permissions-bubbles"; 296 const char kDisablePermissionsBubbles[] = "disable-permissions-bubbles";
300 297
301 // Disable pop-up blocking. 298 // Disable pop-up blocking.
302 const char kDisablePopupBlocking[] = "disable-popup-blocking"; 299 const char kDisablePopupBlocking[] = "disable-popup-blocking";
303 300
304 // Disable speculative TCP/IP preconnection. 301 // Disable speculative TCP/IP preconnection.
305 const char kDisablePreconnect[] = "disable-preconnect"; 302 const char kDisablePreconnect[] = "disable-preconnect";
306 303
307 // Disable prerendering based on local browsing history. 304 // Disable prerendering based on local browsing history.
(...skipping 1098 matching lines...) Expand 10 before | Expand all | Expand 10 after
1406 1403
1407 // ----------------------------------------------------------------------------- 1404 // -----------------------------------------------------------------------------
1408 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1405 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1409 // 1406 //
1410 // You were going to just dump your switches here, weren't you? Instead, please 1407 // You were going to just dump your switches here, weren't you? Instead, please
1411 // put them in alphabetical order above, or in order inside the appropriate 1408 // put them in alphabetical order above, or in order inside the appropriate
1412 // ifdef at the bottom. The order should match the header. 1409 // ifdef at the bottom. The order should match the header.
1413 // ----------------------------------------------------------------------------- 1410 // -----------------------------------------------------------------------------
1414 1411
1415 } // namespace switches 1412 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698