OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NotificationsPrefsCache
(Results
1 - 7
of
7
) sorted by null
/external/chromium/chrome/browser/notifications/
notifications_prefs_cache.h
22
class
NotificationsPrefsCache
23
: public base::RefCountedThreadSafe<
NotificationsPrefsCache
> {
25
NotificationsPrefsCache
();
56
friend class base::RefCountedThreadSafe<
NotificationsPrefsCache
>;
58
virtual ~
NotificationsPrefsCache
();
79
DISALLOW_COPY_AND_ASSIGN(
NotificationsPrefsCache
);
notifications_prefs_cache.cc
15
NotificationsPrefsCache
::
NotificationsPrefsCache
()
20
void
NotificationsPrefsCache
::CacheAllowedOrigin(
29
void
NotificationsPrefsCache
::CacheDeniedOrigin(
38
void
NotificationsPrefsCache
::SetCacheAllowedOrigins(
44
void
NotificationsPrefsCache
::SetCacheDeniedOrigins(
50
void
NotificationsPrefsCache
::SetCacheDefaultContentSetting(
56
void
NotificationsPrefsCache
::ListValueToGurlVector(
67
int
NotificationsPrefsCache
::HasPermission(const GURL& origin) {
84
NotificationsPrefsCache
::~NotificationsPrefsCache() {
[
all
...]
desktop_notification_service.h
28
class
NotificationsPrefsCache
;
83
NotificationsPrefsCache
* prefs_cache() { return prefs_cache_; }
150
scoped_refptr<
NotificationsPrefsCache
> prefs_cache_;
notifications_prefs_cache_unittest.cc
13
scoped_refptr<
NotificationsPrefsCache
> cache(new
NotificationsPrefsCache
());
desktop_notification_service.cc
293
prefs_cache_ = new
NotificationsPrefsCache
();
338
&
NotificationsPrefsCache
::CacheAllowedOrigin,
358
&
NotificationsPrefsCache
::CacheDeniedOrigin,
378
&
NotificationsPrefsCache
::SetCacheDefaultContentSetting,
400
&
NotificationsPrefsCache
::SetCacheAllowedOrigins,
409
&
NotificationsPrefsCache
::SetCacheDeniedOrigins,
desktop_notification_service_unittest.cc
24
//
NotificationsPrefsCache
wants to be called on the IO thread. This class
44
int CacheHasPermission(
NotificationsPrefsCache
* cache, const GURL& url) {
79
void CacheHasPermissionIO(
NotificationsPrefsCache
* cache, const GURL& url) {
118
NotificationsPrefsCache
* cache_;
/external/chromium/chrome/browser/content_settings/
content_settings_notification_provider.cc
242
NotificationsPrefsCache
::ListValueToGurlVector(*allowed_sites,
255
NotificationsPrefsCache
::ListValueToGurlVector(*denied_sites,
Completed in 140 milliseconds