summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/extension_web_ui.cc
diff options
context:
space:
mode:
authorsimon.hong81@gmail.com <simon.hong81@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-02 22:37:42 +0000
committersimon.hong81@gmail.com <simon.hong81@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-02 22:37:42 +0000
commit68c7630b3ae6738e5b9ebb1998b3184fa930463c (patch)
tree6e2e9db98e7d0149f85e315c2668146b4aa42100 /chrome/browser/extensions/extension_web_ui.cc
parentbc2eeb4a236eab44d172d4737d16c9c237db4210 (diff)
downloadchromium_src-68c7630b3ae6738e5b9ebb1998b3184fa930463c.zip
chromium_src-68c7630b3ae6738e5b9ebb1998b3184fa930463c.tar.gz
chromium_src-68c7630b3ae6738e5b9ebb1998b3184fa930463c.tar.bz2
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
Diffstat (limited to 'chrome/browser/extensions/extension_web_ui.cc')
-rw-r--r--chrome/browser/extensions/extension_web_ui.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/extensions/extension_web_ui.cc b/chrome/browser/extensions/extension_web_ui.cc
index 0a7951d..809e9df 100644
--- a/chrome/browser/extensions/extension_web_ui.cc
+++ b/chrome/browser/extensions/extension_web_ui.cc
@@ -109,7 +109,7 @@ class ExtensionWebUIImageLoadingTracker : public ImageLoadingTracker::Observer {
// Forwards the result on the request. If no favicon was available then
// |icon_data| may be backed by NULL. Once the result has been forwarded the
// instance is deleted.
- void ForwardResult(scoped_refptr<RefCountedMemory> icon_data) {
+ void ForwardResult(scoped_refptr<base::RefCountedMemory> icon_data) {
history::FaviconData favicon;
favicon.known_icon = icon_data.get() != NULL && icon_data->size() > 0;
favicon.image_data = icon_data;