OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NTPResourceCache
(Results
1 - 7
of
7
) 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/android/autofill/
profile_android.h
93
class
NTPResourceCache
;
211
virtual
NTPResourceCache
* GetNTPResourceCache() { NOTREACHED(); return NULL; }
/external/chromium/chrome/browser/profiles/
profile.h
89
class
NTPResourceCache
;
517
virtual
NTPResourceCache
* GetNTPResourceCache() = 0;
profile_impl.h
121
virtual
NTPResourceCache
* GetNTPResourceCache();
225
scoped_ptr<
NTPResourceCache
> ntp_resource_cache_;
profile.cc
585
virtual
NTPResourceCache
* GetNTPResourceCache() {
profile_impl.cc
563
NTPResourceCache
* ProfileImpl::GetNTPResourceCache() {
565
ntp_resource_cache_.reset(new
NTPResourceCache
(this));
[
all
...]
Completed in 84 milliseconds