Index: chrome/browser/ui/webui/ntp/ntp_resource_cache.h |
diff --git a/chrome/browser/ui/webui/ntp/ntp_resource_cache.h b/chrome/browser/ui/webui/ntp/ntp_resource_cache.h |
index 382e2259c4d7da3065895bcb6e0f5972ab0a5fe0..a9842cb9d726a9e498859d3285bad89a93414d36 100644 |
--- a/chrome/browser/ui/webui/ntp/ntp_resource_cache.h |
+++ b/chrome/browser/ui/webui/ntp/ntp_resource_cache.h |
@@ -37,14 +37,16 @@ class NTPResourceCache : public content::NotificationObserver, |
private: |
Profile* profile_; |
+ void CreateNewTabHTML(); |
+ scoped_refptr<RefCountedMemory> new_tab_html_; |
+ |
+#if !defined(OS_ANDROID) |
// Returns a message describing any newly-added sync types, or an empty |
// string if all types have already been acknowledged. |
string16 GetSyncTypeMessage(); |
void CreateNewTabIncognitoHTML(); |
scoped_refptr<RefCountedMemory> new_tab_incognito_html_; |
- void CreateNewTabHTML(); |
- scoped_refptr<RefCountedMemory> new_tab_html_; |
void CreateNewTabIncognitoCSS(); |
scoped_refptr<RefCountedMemory> new_tab_incognito_css_; |
@@ -53,6 +55,7 @@ class NTPResourceCache : public content::NotificationObserver, |
content::NotificationRegistrar registrar_; |
PrefChangeRegistrar pref_change_registrar_; |
+#endif |
DISALLOW_COPY_AND_ASSIGN(NTPResourceCache); |
}; |