diff options
author | simon.hong81@gmail.com <simon.hong81@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-02 22:37:42 +0000 |
---|---|---|
committer | simon.hong81@gmail.com <simon.hong81@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-02 22:37:42 +0000 |
commit | 68c7630b3ae6738e5b9ebb1998b3184fa930463c (patch) | |
tree | 6e2e9db98e7d0149f85e315c2668146b4aa42100 /ui/views | |
parent | bc2eeb4a236eab44d172d4737d16c9c237db4210 (diff) | |
download | chromium_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 'ui/views')
-rw-r--r-- | ui/views/widget/default_theme_provider.cc | 2 | ||||
-rw-r--r-- | ui/views/widget/default_theme_provider.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ui/views/widget/default_theme_provider.cc b/ui/views/widget/default_theme_provider.cc index 5096870..df33ee6 100644 --- a/ui/views/widget/default_theme_provider.cc +++ b/ui/views/widget/default_theme_provider.cc @@ -41,7 +41,7 @@ bool DefaultThemeProvider::HasCustomImage(int id) const { return false; } -RefCountedMemory* DefaultThemeProvider::GetRawData(int id) const { +base::RefCountedMemory* DefaultThemeProvider::GetRawData(int id) const { return NULL; } diff --git a/ui/views/widget/default_theme_provider.h b/ui/views/widget/default_theme_provider.h index cd975c3..c1df943 100644 --- a/ui/views/widget/default_theme_provider.h +++ b/ui/views/widget/default_theme_provider.h @@ -31,7 +31,7 @@ class VIEWS_EXPORT DefaultThemeProvider : public ui::ThemeProvider { virtual bool GetDisplayProperty(int id, int* result) const OVERRIDE; virtual bool ShouldUseNativeFrame() const OVERRIDE; virtual bool HasCustomImage(int id) const OVERRIDE; - virtual RefCountedMemory* GetRawData(int id) const OVERRIDE; + virtual base::RefCountedMemory* GetRawData(int id) const OVERRIDE; private: DISALLOW_COPY_AND_ASSIGN(DefaultThemeProvider); |