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

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

Issue 1317513004: Add InterestsFetcher which retrieves a user's interests from the server. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix comments 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
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 669 matching lines...) Expand 10 before | Expand all | Expand 10 after
680 const char kInstallChromeApp[] = "install-chrome-app"; 680 const char kInstallChromeApp[] = "install-chrome-app";
681 681
682 // A list of whitelists to install for a supervised user, for testing. 682 // A list of whitelists to install for a supervised user, for testing.
683 // The list is of the following form: <id>[:<name>],[<id>[:<name>],...] 683 // The list is of the following form: <id>[:<name>],[<id>[:<name>],...]
684 const char kInstallSupervisedUserWhitelists[] = 684 const char kInstallSupervisedUserWhitelists[] =
685 "install-supervised-user-whitelists"; 685 "install-supervised-user-whitelists";
686 686
687 // Marks a renderer as an Instant process. 687 // Marks a renderer as an Instant process.
688 const char kInstantProcess[] = "instant-process"; 688 const char kInstantProcess[] = "instant-process";
689 689
690 // The URL for the interests API.
691 const char kInterestsURL[] = "interests-url";
692
690 // Invalidation service should use GCM network channel even if experiment is not 693 // Invalidation service should use GCM network channel even if experiment is not
691 // enabled. 694 // enabled.
692 const char kInvalidationUseGCMChannel[] = "invalidation-use-gcm-channel"; 695 const char kInvalidationUseGCMChannel[] = "invalidation-use-gcm-channel";
693 696
694 // Disable latest shipping ECMAScript 6 features. 697 // Disable latest shipping ECMAScript 6 features.
695 const char kDisableJavaScriptHarmonyShipping[] = 698 const char kDisableJavaScriptHarmonyShipping[] =
696 "disable-javascript-harmony-shipping"; 699 "disable-javascript-harmony-shipping";
697 700
698 // Enables experimental Harmony (ECMAScript 6) features. 701 // Enables experimental Harmony (ECMAScript 6) features.
699 const char kJavaScriptHarmony[] = "javascript-harmony"; 702 const char kJavaScriptHarmony[] = "javascript-harmony";
(...skipping 686 matching lines...) Expand 10 before | Expand all | Expand 10 after
1386 1389
1387 // ----------------------------------------------------------------------------- 1390 // -----------------------------------------------------------------------------
1388 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1391 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1389 // 1392 //
1390 // You were going to just dump your switches here, weren't you? Instead, please 1393 // You were going to just dump your switches here, weren't you? Instead, please
1391 // put them in alphabetical order above, or in order inside the appropriate 1394 // put them in alphabetical order above, or in order inside the appropriate
1392 // ifdef at the bottom. The order should match the header. 1395 // ifdef at the bottom. The order should match the header.
1393 // ----------------------------------------------------------------------------- 1396 // -----------------------------------------------------------------------------
1394 1397
1395 } // namespace switches 1398 } // namespace switches
OLDNEW
« chrome/browser/interests/interests_fetcher.cc ('K') | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698