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

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

Issue 190063004: chromeos: Delete old, unused contacts code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: undo unwanted indenting changes Created 6 years, 9 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 557 matching lines...) Expand 10 before | Expand all | Expand 10 after
568 // Enables client hints, which adds hints about browser state to HTTP requests. 568 // Enables client hints, which adds hints about browser state to HTTP requests.
569 const char kEnableClientHints[] = "enable-client-hints"; 569 const char kEnableClientHints[] = "enable-client-hints";
570 570
571 // Enables the multi-level undo system for bookmarks. 571 // Enables the multi-level undo system for bookmarks.
572 const char kEnableBookmarkUndo[] = "enable-bookmark-undo"; 572 const char kEnableBookmarkUndo[] = "enable-bookmark-undo";
573 573
574 // This applies only when the process type is "service". Enables the Cloud 574 // This applies only when the process type is "service". Enables the Cloud
575 // Print Proxy component within the service process. 575 // Print Proxy component within the service process.
576 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; 576 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy";
577 577
578 // Enables fetching the user's contacts from Google and showing them in the
579 // Chrome OS apps list.
580 const char kEnableContacts[] = "enable-contacts";
581
582 // If true devtools experimental settings are enabled. 578 // If true devtools experimental settings are enabled.
583 const char kEnableDevToolsExperiments[] = "enable-devtools-experiments"; 579 const char kEnableDevToolsExperiments[] = "enable-devtools-experiments";
584 580
585 // Enable device discovery notifications. 581 // Enable device discovery notifications.
586 const char kEnableDeviceDiscoveryNotifications[] = 582 const char kEnableDeviceDiscoveryNotifications[] =
587 "enable-device-discovery-notifications"; 583 "enable-device-discovery-notifications";
588 584
589 // Enables the DOM distiller. 585 // Enables the DOM distiller.
590 const char kEnableDomDistiller[] = "enable-dom-distiller"; 586 const char kEnableDomDistiller[] = "enable-dom-distiller";
591 587
(...skipping 1054 matching lines...) Expand 10 before | Expand all | Expand 10 after
1646 1642
1647 // ----------------------------------------------------------------------------- 1643 // -----------------------------------------------------------------------------
1648 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1644 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1649 // 1645 //
1650 // You were going to just dump your switches here, weren't you? Instead, please 1646 // You were going to just dump your switches here, weren't you? Instead, please
1651 // put them in alphabetical order above, or in order inside the appropriate 1647 // put them in alphabetical order above, or in order inside the appropriate
1652 // ifdef at the bottom. The order should match the header. 1648 // ifdef at the bottom. The order should match the header.
1653 // ----------------------------------------------------------------------------- 1649 // -----------------------------------------------------------------------------
1654 1650
1655 } // namespace switches 1651 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698