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

Side by Side Diff: chrome/browser/web_resource/promo_resource_service.h

Issue 14622003: components: Move PrefRegistrySyncable into user_prefs namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 7 years, 7 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) 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 #ifndef CHROME_BROWSER_WEB_RESOURCE_PROMO_RESOURCE_SERVICE_H_ 5 #ifndef CHROME_BROWSER_WEB_RESOURCE_PROMO_RESOURCE_SERVICE_H_
6 #define CHROME_BROWSER_WEB_RESOURCE_PROMO_RESOURCE_SERVICE_H_ 6 #define CHROME_BROWSER_WEB_RESOURCE_PROMO_RESOURCE_SERVICE_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/memory/weak_ptr.h" 10 #include "base/memory/weak_ptr.h"
11 #include "chrome/browser/web_resource/web_resource_service.h" 11 #include "chrome/browser/web_resource/web_resource_service.h"
12 12
13 class NotificationPromo;
14 class PrefRegistrySimple;
15 class PrefService;
16
13 namespace base { 17 namespace base {
14 class DictionaryValue; 18 class DictionaryValue;
15 } 19 }
16 20
17 class NotificationPromo; 21 namespace user_prefs {
18 class PrefRegistrySimple;
19 class PrefRegistrySyncable; 22 class PrefRegistrySyncable;
20 class PrefService; 23 }
21 24
22 // A PromoResourceService fetches data from a web resource server to be used to 25 // A PromoResourceService fetches data from a web resource server to be used to
23 // dynamically change the appearance of the New Tab Page. For example, it has 26 // dynamically change the appearance of the New Tab Page. For example, it has
24 // been used to fetch "tips" to be displayed on the NTP, or to display 27 // been used to fetch "tips" to be displayed on the NTP, or to display
25 // promotional messages to certain groups of Chrome users. 28 // promotional messages to certain groups of Chrome users.
26 class PromoResourceService : public WebResourceService { 29 class PromoResourceService : public WebResourceService {
27 public: 30 public:
28 static void RegisterPrefs(PrefRegistrySimple* registry); 31 static void RegisterPrefs(PrefRegistrySimple* registry);
29 static void RegisterUserPrefs(PrefRegistrySyncable* registry); 32 static void RegisterUserPrefs(user_prefs::PrefRegistrySyncable* registry);
30 static void MigrateUserPrefs(PrefService* user_prefs); 33 static void MigrateUserPrefs(PrefService* user_prefs);
31 34
32 PromoResourceService(); 35 PromoResourceService();
33 36
34 private: 37 private:
35 virtual ~PromoResourceService(); 38 virtual ~PromoResourceService();
36 39
37 // Schedule a notification that a web resource is either going to become 40 // Schedule a notification that a web resource is either going to become
38 // available or be no longer valid. 41 // available or be no longer valid.
39 void ScheduleNotification(const NotificationPromo& notification_promo); 42 void ScheduleNotification(const NotificationPromo& notification_promo);
(...skipping 17 matching lines...) Expand all
57 60
58 // Allows the creation of tasks to send a notification. 61 // Allows the creation of tasks to send a notification.
59 // This allows the PromoResourceService to notify the New Tab Page immediately 62 // This allows the PromoResourceService to notify the New Tab Page immediately
60 // when a new web resource should be shown or removed. 63 // when a new web resource should be shown or removed.
61 base::WeakPtrFactory<PromoResourceService> weak_ptr_factory_; 64 base::WeakPtrFactory<PromoResourceService> weak_ptr_factory_;
62 65
63 DISALLOW_COPY_AND_ASSIGN(PromoResourceService); 66 DISALLOW_COPY_AND_ASSIGN(PromoResourceService);
64 }; 67 };
65 68
66 #endif // CHROME_BROWSER_WEB_RESOURCE_PROMO_RESOURCE_SERVICE_H_ 69 #endif // CHROME_BROWSER_WEB_RESOURCE_PROMO_RESOURCE_SERVICE_H_
OLDNEW
« no previous file with comments | « chrome/browser/web_resource/notification_promo.cc ('k') | chrome/browser/web_resource/promo_resource_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698