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

Side by Side Diff: ui/views/widget/default_theme_provider.cc

Issue 10272004: Move RefCountedMemory class to base namespace. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/views/widget/default_theme_provider.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ui/views/widget/default_theme_provider.h" 5 #include "ui/views/widget/default_theme_provider.h"
6 6
7 #include "ui/base/resource/resource_bundle.h" 7 #include "ui/base/resource/resource_bundle.h"
8 8
9 #if defined(OS_WIN) && !defined(USE_AURA) 9 #if defined(OS_WIN) && !defined(USE_AURA)
10 #include "ui/views/widget/native_widget_win.h" 10 #include "ui/views/widget/native_widget_win.h"
(...skipping 23 matching lines...) Expand all
34 return NativeWidgetWin::IsAeroGlassEnabled(); 34 return NativeWidgetWin::IsAeroGlassEnabled();
35 #else 35 #else
36 return false; 36 return false;
37 #endif 37 #endif
38 } 38 }
39 39
40 bool DefaultThemeProvider::HasCustomImage(int id) const { 40 bool DefaultThemeProvider::HasCustomImage(int id) const {
41 return false; 41 return false;
42 } 42 }
43 43
44 RefCountedMemory* DefaultThemeProvider::GetRawData(int id) const { 44 base::RefCountedMemory* DefaultThemeProvider::GetRawData(int id) const {
45 return NULL; 45 return NULL;
46 } 46 }
47 47
48 } // namespace views 48 } // namespace views
OLDNEW
« no previous file with comments | « ui/views/widget/default_theme_provider.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698