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

Side by Side Diff: ui/base/default_theme_provider.cc

Issue 851853002: It is time. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Trying to reup because the last upload failed. Created 5 years, 11 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
« no previous file with comments | « ui/base/default_theme_provider.h ('k') | ui/base/default_theme_provider_mac.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "ui/base/default_theme_provider.h"
6
7 #include "ui/base/resource/resource_bundle.h"
8 #include "ui/gfx/image/image_skia.h"
9
10 namespace ui {
11
12 DefaultThemeProvider::DefaultThemeProvider() {}
13
14 DefaultThemeProvider::~DefaultThemeProvider() {}
15
16 bool DefaultThemeProvider::UsingSystemTheme() const {
17 return true;
18 }
19
20 gfx::ImageSkia* DefaultThemeProvider::GetImageSkiaNamed(int id) const {
21 return ResourceBundle::GetSharedInstance().GetImageSkiaNamed(id);
22 }
23
24 SkColor DefaultThemeProvider::GetColor(int id) const {
25 // Return debugging-blue.
26 return 0xff0000ff;
27 }
28
29 int DefaultThemeProvider::GetDisplayProperty(int id) const {
30 return -1;
31 }
32
33 bool DefaultThemeProvider::ShouldUseNativeFrame() const {
34 return false;
35 }
36
37 bool DefaultThemeProvider::HasCustomImage(int id) const {
38 return false;
39 }
40
41 base::RefCountedMemory* DefaultThemeProvider::GetRawData(
42 int id,
43 ui::ScaleFactor scale_factor) const {
44 return NULL;
45 }
46
47 } // namespace ui
OLDNEW
« no previous file with comments | « ui/base/default_theme_provider.h ('k') | ui/base/default_theme_provider_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698