Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3317)

Unified Diff: chrome/browser/ui/webui/chrome_web_ui_controller_factory.h

Issue 10272004: Move RefCountedMemory class to base namespace. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/webui/chrome_web_ui_controller_factory.h
===================================================================
--- chrome/browser/ui/webui/chrome_web_ui_controller_factory.h (revision 134496)
+++ chrome/browser/ui/webui/chrome_web_ui_controller_factory.h (working copy)
@@ -13,7 +13,10 @@
#include "chrome/browser/favicon/favicon_service.h"
class Profile;
+
+namespace base {
class RefCountedMemory;
+}
class ChromeWebUIControllerFactory : public content::WebUIControllerFactory {
public:
@@ -49,7 +52,7 @@
// Gets the data for the favicon for a WebUI page. Returns NULL if the WebUI
// does not have a favicon.
- RefCountedMemory* GetFaviconResourceBytes(const GURL& page_url) const;
+ base::RefCountedMemory* GetFaviconResourceBytes(const GURL& page_url) const;
DISALLOW_COPY_AND_ASSIGN(ChromeWebUIControllerFactory);
};

Powered by Google App Engine
This is Rietveld 408576698