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

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

Issue 7820003: Add support to download web store promo logos over https. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: dcheck Created 9 years, 3 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 8
9 namespace prefs { 9 namespace prefs {
10 10
(...skipping 1287 matching lines...) Expand 10 before | Expand all | Expand 10 after
1298 1298
1299 // The button text for the NTP web store promo. 1299 // The button text for the NTP web store promo.
1300 const char kNTPWebStorePromoButton[] = "ntp.webstorepromo.button"; 1300 const char kNTPWebStorePromoButton[] = "ntp.webstorepromo.button";
1301 1301
1302 // The button link for the NTP web store promo. 1302 // The button link for the NTP web store promo.
1303 const char kNTPWebStorePromoLink[] = "ntp.webstorepromo.link"; 1303 const char kNTPWebStorePromoLink[] = "ntp.webstorepromo.link";
1304 1304
1305 // The image URL for the NTP web store promo logo. 1305 // The image URL for the NTP web store promo logo.
1306 const char kNTPWebStorePromoLogo[] = "ntp.webstorepromo.logo"; 1306 const char kNTPWebStorePromoLogo[] = "ntp.webstorepromo.logo";
1307 1307
1308 // The original URL for the NTP web store promo logo.
1309 const char kNTPWebStorePromoLogoSource[] = "ntp.webstorepromo.logo_source";
1310
1308 // The "hide this" link text for the NTP web store promo. 1311 // The "hide this" link text for the NTP web store promo.
1309 const char kNTPWebStorePromoExpire[] = "ntp.webstorepromo.expire"; 1312 const char kNTPWebStorePromoExpire[] = "ntp.webstorepromo.expire";
1310 1313
1311 // Specifies what users should maximize the NTP web store promo. 1314 // Specifies what users should maximize the NTP web store promo.
1312 const char kNTPWebStorePromoUserGroup[] = "ntp.webstorepromo.usergroup"; 1315 const char kNTPWebStorePromoUserGroup[] = "ntp.webstorepromo.usergroup";
1313 1316
1314 // Customized app page names that appear on the New Tab Page. 1317 // Customized app page names that appear on the New Tab Page.
1315 const char kNTPAppPageNames[] = "ntp.app_page_names"; 1318 const char kNTPAppPageNames[] = "ntp.app_page_names";
1316 1319
1317 // When true, web store promos will never be shown. 1320 // When true, web store promos will never be shown.
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
1572 // specified. 1575 // specified.
1573 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; 1576 const char kCustomHandlersEnabled[] = "custom_handlers.enabled";
1574 1577
1575 // Integers that specify the policy refresh rate for device- and user-policy in 1578 // Integers that specify the policy refresh rate for device- and user-policy in
1576 // milliseconds. Not all values are meaningful, so it is clamped to a sane range 1579 // milliseconds. Not all values are meaningful, so it is clamped to a sane range
1577 // by the cloud policy subsystem. 1580 // by the cloud policy subsystem.
1578 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; 1581 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate";
1579 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; 1582 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate";
1580 1583
1581 } // namespace prefs 1584 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698