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

Unified Diff: chrome/browser/web_resource/promo_resource_service.h

Issue 10539045: Purge Logo/WebstoreSignal. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: missed a file Created 8 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/web_resource/promo_resource_service.h
===================================================================
--- chrome/browser/web_resource/promo_resource_service.h (revision 140512)
+++ chrome/browser/web_resource/promo_resource_service.h (working copy)
@@ -11,13 +11,11 @@
#include "base/memory/weak_ptr.h"
#include "chrome/browser/web_resource/notification_promo.h"
#include "chrome/browser/web_resource/web_resource_service.h"
-#include "chrome/common/chrome_version_info.h"
namespace base {
class DictionaryValue;
}
-class AppsPromoLogoFetcher;
class PrefService;
class Profile;
@@ -27,17 +25,7 @@
// promotional messages to certain groups of Chrome users.
class PromoResourceService : public WebResourceService {
Dan Beam 2012/06/08 18:49:47 yay, it looks like a normal header now!
public:
- // Identifies types of Chrome builds for promo targeting.
- enum BuildType {
- NO_BUILD = 0,
- DEV_BUILD = 1,
- BETA_BUILD = 1 << 1,
- STABLE_BUILD = 1 << 2,
- CANARY_BUILD = 1 << 3,
- ALL_BUILDS = (1 << 4) - 1,
- };
-
- // Checks for conditions to show promo: start/end times, channel, etc.
+ // Checks for conditions to show promo.
static bool CanShowNotificationPromo(Profile* profile);
static void RegisterPrefs(PrefService* local_state);
@@ -46,22 +34,7 @@
explicit PromoResourceService(Profile* profile);
- static chrome::VersionInfo::Channel GetChannel();
- static bool IsBuildTargeted(chrome::VersionInfo::Channel, int builds_allowed);
-
private:
- FRIEND_TEST_ALL_PREFIXES(PromoResourceServiceTest, IsBuildTargetedTest);
- FRIEND_TEST_ALL_PREFIXES(PromoResourceServiceTest, UnpackLogoSignal);
- FRIEND_TEST_ALL_PREFIXES(PromoResourceServiceTest, UnpackWebStoreSignal);
- FRIEND_TEST_ALL_PREFIXES(
- PromoResourceServiceTest, UnpackPartialWebStoreSignal);
- FRIEND_TEST_ALL_PREFIXES(
- PromoResourceServiceTest, UnpackWebStoreSignalHttpsLogo);
- FRIEND_TEST_ALL_PREFIXES(
- PromoResourceServiceTest, UnpackWebStoreSignalHttpsLogoError);
- FRIEND_TEST_ALL_PREFIXES(
- PromoResourceServiceTest, UnpackWebStoreSignalHttpLogo);
-
virtual ~PromoResourceService();
int GetPromoServiceVersion();
@@ -70,11 +43,6 @@
// so we can fetch new data if the locale changes.
std::string GetPromoLocale();
- // Returns true if |builds_targeted| includes the release channel Chrome
- // belongs to. For testing purposes, you can override the current channel
- // with set_channel.
- bool IsBuildTargeted(int builds_targeted);
-
// Schedule a notification that a web resource is either going to become
// available or be no longer valid.
void ScheduleNotification(double start, double end);
@@ -93,81 +61,12 @@
// Notify listeners that the state of a web resource has changed.
void PromoResourceStateChange();
- // Overrides the current Chrome release channel for testing purposes.
- void set_channel(chrome::VersionInfo::Channel channel) { channel_ = channel; }
-
// WebResourceService override.
virtual void Unpack(const base::DictionaryValue& parsed_json) OVERRIDE;
- // Unpack the web resource as a custom notification signal.
- void UnpackNotificationSignal(const base::DictionaryValue& parsed_json);
-
- // Unpack the promo resource as a custom logo signal. Expects a start and end
- // signal. Delivery will be in json in the form of:
- // {
- // "topic": {
- // "answers": [
- // {
- // "answer_id": "107366",
- // "name": "custom_logo_start",
- // "question": "",
- // "tooltip": "",
- // "inproduct": "10/8/09 12:00",
- // "inproduct_target": null
- // },
- // {
- // "answer_id": "107366",
- // "name": "custom_logo_end",
- // "question": "",
- // "tooltip": "",
- // "inproduct": "10/8/09 12:00",
- // "inproduct_target": null
- // },
- // ...
- // ]
- // }
- // }
- //
- void UnpackLogoSignal(const base::DictionaryValue& parsed_json);
-
- // Unpack the web store promo. Expects JSON delivery in the following format:
- // {
- // "topic": {
- // "answers": [
- // {
- // "answer_id": "1143011",
- // "name": "webstore_promo:15:1:https://www.google.com/logo.png",
- // "question": "Browse thousands of apps and games for Chrome.",
- // "inproduct_target": "Visit the Chrome Web Store",
- // "inproduct": "https://chrome.google.com/webstore?hl=en",
- // "tooltip": "No thanks, hide this"
- // },
- // ...
- // ]
- // }
- // }
- // The properties are defined as follows:
- // inproduct: the release channels targeted (bitwise or of BuildTypes)
- // question: the promo header text
- // inproduct_target: the promo button text
- // inproduct: the promo button link
- // tooltip: the text for the "hide this" link on the promo
- // name: starts with "webstore_promo" to identify the signal. The second
- // part contains the release channels targeted (bitwise or of
- // BuildTypes). The third part specifies what users should maximize
- // the apps section of the NTP when first loading the promo (bitwise
- // or of AppsPromo::UserGroup). The forth part is optional and
- // specifies the URL of the logo image. If left out, the default
- // webstore logo will be used. The logo can be an HTTPS or DATA URL.
- // answer_id: the promo's id
- void UnpackWebStoreSignal(const base::DictionaryValue& parsed_json);
-
// The profile this service belongs to.
Profile* profile_;
- // Overrides the current Chrome release channel for testing purposes.
- chrome::VersionInfo::Channel channel_;
-
// Allows the creation of tasks to send a notification.
// This allows the PromoResourceService to notify the New Tab Page immediately
// when a new web resource should be shown or removed.
@@ -180,9 +79,6 @@
// becomes available.
bool web_resource_update_scheduled_;
- // A helper that downloads the promo logo.
- scoped_ptr<AppsPromoLogoFetcher> apps_promo_logo_fetcher_;
-
DISALLOW_COPY_AND_ASSIGN(PromoResourceService);
};

Powered by Google App Engine
This is Rietveld 408576698