diff options
Diffstat (limited to 'chrome/browser/web_resource/promo_resource_service.h')
-rw-r--r-- | chrome/browser/web_resource/promo_resource_service.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/chrome/browser/web_resource/promo_resource_service.h b/chrome/browser/web_resource/promo_resource_service.h index 2149890a..bc9b791 100644 --- a/chrome/browser/web_resource/promo_resource_service.h +++ b/chrome/browser/web_resource/promo_resource_service.h @@ -6,6 +6,9 @@ #define CHROME_BROWSER_WEB_RESOURCE_PROMO_RESOURCE_SERVICE_H_ #pragma once +#include <string> + +#include "chrome/browser/platform_util.h" #include "chrome/browser/web_resource/web_resource_service.h" namespace PromoResourceServiceUtil { @@ -29,7 +32,8 @@ class PrefService; class PromoResourceService : public WebResourceService { public: - static bool IsBuildTargeted(const std::string& channel, int builds_targeted); + static bool IsBuildTargeted(platform_util::Channel channel, + int builds_targeted); static void RegisterPrefs(PrefService* local_state); @@ -80,7 +84,7 @@ class PromoResourceService void ScheduleNotificationOnInit(); // Overrides the current Chrome release channel for testing purposes. - void set_channel(const char* channel) { channel_ = channel; } + void set_channel(platform_util::Channel channel) { channel_ = channel; } virtual void Unpack(const DictionaryValue& parsed_json); @@ -187,7 +191,7 @@ class PromoResourceService DictionaryValue* web_resource_cache_; // Overrides the current Chrome release channel for testing purposes. - const char* channel_; + platform_util::Channel channel_; DISALLOW_COPY_AND_ASSIGN(PromoResourceService); }; |