OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:NTPResourceCache
(Results
1 - 5
of
5
) sorted by null
/external/chromium/chrome/browser/ui/webui/
ntp_resource_cache.h
20
class
NTPResourceCache
: public NotificationObserver {
22
explicit
NTPResourceCache
(Profile* profile);
23
virtual ~
NTPResourceCache
();
49
DISALLOW_COPY_AND_ASSIGN(
NTPResourceCache
);
ntp_resource_cache.cc
151
NTPResourceCache
::
NTPResourceCache
(Profile* profile) : profile_(profile) {
164
NTPResourceCache
::~
NTPResourceCache
() {}
166
RefCountedBytes*
NTPResourceCache
::GetNewTabHTML(bool is_incognito) {
179
RefCountedBytes*
NTPResourceCache
::GetNewTabCSS(bool is_incognito) {
192
void
NTPResourceCache
::Observe(NotificationType type,
217
void
NTPResourceCache
::CreateNewTabIncognitoHTML() {
259
void
NTPResourceCache
::CreateNewTabHTML() {
428
void
NTPResourceCache
::CreateNewTabIncognitoCSS()
[
all
...]
/external/chromium_org/chrome/browser/ui/webui/ntp/android/
ntp_resource_cache_android.cc
38
NTPResourceCache
::
NTPResourceCache
(Profile* profile) : profile_(profile) {}
40
NTPResourceCache
::~
NTPResourceCache
() {}
42
NTPResourceCache
::WindowType
NTPResourceCache
::GetWindowType(
48
return
NTPResourceCache
::INCOGNITO;
50
return
NTPResourceCache
::INCOGNITO;
52
return
NTPResourceCache
::NORMAL;
55
base::RefCountedMemory*
NTPResourceCache
::GetNewTabHTML(WindowType win_type)
[
all
...]
/external/chromium_org/chrome/browser/ui/webui/ntp/
ntp_resource_cache.h
29
class
NTPResourceCache
: public content::NotificationObserver,
38
explicit
NTPResourceCache
(Profile* profile);
39
virtual ~
NTPResourceCache
();
112
DISALLOW_COPY_AND_ASSIGN(
NTPResourceCache
);
ntp_resource_cache.cc
161
NTPResourceCache
::
NTPResourceCache
(Profile* profile)
173
base::Closure callback = base::Bind(&
NTPResourceCache
::OnPreferenceChanged,
198
NTPResourceCache
::~
NTPResourceCache
() {}
200
bool
NTPResourceCache
::NewTabCacheNeedsRefresh() {
217
NTPResourceCache
::WindowType
NTPResourceCache
::GetWindowType(
220
return
NTPResourceCache
::GUEST;
225
return
NTPResourceCache
::INCOGNITO
[
all
...]
Completed in 64 milliseconds