From 68c7630b3ae6738e5b9ebb1998b3184fa930463c Mon Sep 17 00:00:00 2001 From: "simon.hong81@gmail.com" Date: Wed, 2 May 2012 22:37:42 +0000 Subject: Move RefCountedMemory Class to Base namespace BUG=none TEST=compiles chrome, browser_tests and ui_tests Review URL: http://codereview.chromium.org/10272004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@135011 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/ui/webui/ntp/ntp_resource_cache_android.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'chrome/browser/ui/webui/ntp/ntp_resource_cache_android.cc') diff --git a/chrome/browser/ui/webui/ntp/ntp_resource_cache_android.cc b/chrome/browser/ui/webui/ntp/ntp_resource_cache_android.cc index 09e925d..db8d468 100644 --- a/chrome/browser/ui/webui/ntp/ntp_resource_cache_android.cc +++ b/chrome/browser/ui/webui/ntp/ntp_resource_cache_android.cc @@ -34,7 +34,7 @@ NTPResourceCache::NTPResourceCache(Profile* profile) : profile_(profile) {} NTPResourceCache::~NTPResourceCache() {} -RefCountedMemory* NTPResourceCache::GetNewTabHTML(bool is_incognito) { +base::RefCountedMemory* NTPResourceCache::GetNewTabHTML(bool is_incognito) { DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); // Android uses same html/css for incognito NTP and normal NTP if (!new_tab_html_.get()) @@ -42,7 +42,7 @@ RefCountedMemory* NTPResourceCache::GetNewTabHTML(bool is_incognito) { return new_tab_html_.get(); } -RefCountedMemory* NTPResourceCache::GetNewTabCSS(bool is_incognito) { +base::RefCountedMemory* NTPResourceCache::GetNewTabCSS(bool is_incognito) { // This is used for themes, which are not currently supported on Android. NOTIMPLEMENTED(); return NULL; -- cgit v1.1