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

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

Issue 1384973002: Add InterestsFetcher which retrieves a user's interests from the server. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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
« 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 659 matching lines...) Expand 10 before | Expand all | Expand 10 after
670 const char kInstallChromeApp[] = "install-chrome-app"; 670 const char kInstallChromeApp[] = "install-chrome-app";
671 671
672 // A list of whitelists to install for a supervised user, for testing. 672 // A list of whitelists to install for a supervised user, for testing.
673 // The list is of the following form: <id>[:<name>],[<id>[:<name>],...] 673 // The list is of the following form: <id>[:<name>],[<id>[:<name>],...]
674 const char kInstallSupervisedUserWhitelists[] = 674 const char kInstallSupervisedUserWhitelists[] =
675 "install-supervised-user-whitelists"; 675 "install-supervised-user-whitelists";
676 676
677 // Marks a renderer as an Instant process. 677 // Marks a renderer as an Instant process.
678 const char kInstantProcess[] = "instant-process"; 678 const char kInstantProcess[] = "instant-process";
679 679
680 // The URL for the interests API.
681 const char kInterestsURL[] = "interests-url";
682
680 // Invalidation service should use GCM network channel even if experiment is not 683 // Invalidation service should use GCM network channel even if experiment is not
681 // enabled. 684 // enabled.
682 const char kInvalidationUseGCMChannel[] = "invalidation-use-gcm-channel"; 685 const char kInvalidationUseGCMChannel[] = "invalidation-use-gcm-channel";
683 686
684 // Enables site isolation for all chrome-extension:// urls. 687 // Enables site isolation for all chrome-extension:// urls.
685 const char kIsolateExtensions[] = "isolate-extensions"; 688 const char kIsolateExtensions[] = "isolate-extensions";
686 689
687 // Disable latest shipping ECMAScript 6 features. 690 // Disable latest shipping ECMAScript 6 features.
688 const char kDisableJavaScriptHarmonyShipping[] = 691 const char kDisableJavaScriptHarmonyShipping[] =
689 "disable-javascript-harmony-shipping"; 692 "disable-javascript-harmony-shipping";
(...skipping 701 matching lines...) Expand 10 before | Expand all | Expand 10 after
1391 1394
1392 // ----------------------------------------------------------------------------- 1395 // -----------------------------------------------------------------------------
1393 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1396 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1394 // 1397 //
1395 // You were going to just dump your switches here, weren't you? Instead, please 1398 // You were going to just dump your switches here, weren't you? Instead, please
1396 // put them in alphabetical order above, or in order inside the appropriate 1399 // put them in alphabetical order above, or in order inside the appropriate
1397 // ifdef at the bottom. The order should match the header. 1400 // ifdef at the bottom. The order should match the header.
1398 // ----------------------------------------------------------------------------- 1401 // -----------------------------------------------------------------------------
1399 1402
1400 } // namespace switches 1403 } // 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