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

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

Issue 3522015: Implement new strategy for default apps (Closed)
Patch Set: all done Created 10 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/pref_names.h ('k') | chrome/installer/mini_installer/chrome.release » ('j') | 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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/pref_names.h" 5 #include "chrome/common/pref_names.h"
6 6
7 namespace prefs { 7 namespace prefs {
8 8
9 // *************** PROFILE PREFS *************** 9 // *************** PROFILE PREFS ***************
10 // These are attached to the user profile 10 // These are attached to the user profile
11 11
12 // A counter that controls whether the apps promo is shown in the app launcher
13 // or not.
14 const char kAppsPromoCounter[] = "apps_promo_counter";
15
16 // Whether we have installed default apps yet in this profile.
17 const char kDefaultAppsInstalled[] = "default_apps_installed";
18
12 // A boolean specifying whether the New Tab page is the home page or not. 19 // A boolean specifying whether the New Tab page is the home page or not.
13 const char kHomePageIsNewTabPage[] = "homepage_is_newtabpage"; 20 const char kHomePageIsNewTabPage[] = "homepage_is_newtabpage";
14 21
15 // This is the URL of the page to load when opening new tabs. 22 // This is the URL of the page to load when opening new tabs.
16 const char kHomePage[] = "homepage"; 23 const char kHomePage[] = "homepage";
17 24
18 // Used to determine if the last session exited cleanly. Set to false when 25 // Used to determine if the last session exited cleanly. Set to false when
19 // first opened, and to true when closing. On startup if the value is false, 26 // first opened, and to true when closing. On startup if the value is false,
20 // it means the profile didn't exit cleanly. 27 // it means the profile didn't exit cleanly.
21 const char kSessionExitedCleanly[] = "profile.exited_cleanly"; 28 const char kSessionExitedCleanly[] = "profile.exited_cleanly";
(...skipping 999 matching lines...) Expand 10 before | Expand all | Expand 10 after
1021 // String specifying the proxy server. For a specification of the expected 1028 // String specifying the proxy server. For a specification of the expected
1022 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). 1029 // syntax see net::ProxyConfig::ProxyRules::ParseFromString().
1023 const char kProxyServer[] = "proxy.server"; 1030 const char kProxyServer[] = "proxy.server";
1024 // URL to the proxy .pac file. 1031 // URL to the proxy .pac file.
1025 const char kProxyPacUrl[] = "proxy.pac_url"; 1032 const char kProxyPacUrl[] = "proxy.pac_url";
1026 // String containing proxy bypass rules. For a specification of the 1033 // String containing proxy bypass rules. For a specification of the
1027 // expected syntax see net::ProxyBypassRules::ParseFromString(). 1034 // expected syntax see net::ProxyBypassRules::ParseFromString().
1028 const char kProxyBypassList[] = "proxy.bypass_list"; 1035 const char kProxyBypassList[] = "proxy.bypass_list";
1029 1036
1030 } // namespace prefs 1037 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | chrome/installer/mini_installer/chrome.release » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698