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.
5 #include "ui/native_theme/native_theme_android.h"
7 #include "base/basictypes.h"
8 #include "base/logging.h"
12 #if !defined(USE_AURA)
14 NativeTheme
* NativeTheme::instance() {
15 return NativeThemeAndroid::instance();
20 NativeThemeAndroid
* NativeThemeAndroid::instance() {
21 CR_DEFINE_STATIC_LOCAL(NativeThemeAndroid
, s_native_theme
, ());
22 return &s_native_theme
;
25 SkColor
NativeThemeAndroid::GetSystemColor(ColorId color_id
) const {
30 NativeThemeAndroid::NativeThemeAndroid() {
33 NativeThemeAndroid::~NativeThemeAndroid() {