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/native_theme/native_theme_android.h" 6 7 #include "base/basictypes.h" 8 #include "base/logging.h" 9 10 namespace ui { 11 12 // static instance()13NativeTheme* NativeTheme::instance() { 14 return NativeThemeAndroid::instance(); 15 } 16 17 // static instance()18NativeThemeAndroid* NativeThemeAndroid::instance() { 19 CR_DEFINE_STATIC_LOCAL(NativeThemeAndroid, s_native_theme, ()); 20 return &s_native_theme; 21 } 22 GetSystemColor(ColorId color_id) const23SkColor NativeThemeAndroid::GetSystemColor(ColorId color_id) const { 24 NOTIMPLEMENTED(); 25 return SK_ColorBLACK; 26 } 27 NativeThemeAndroid()28NativeThemeAndroid::NativeThemeAndroid() { 29 } 30 ~NativeThemeAndroid()31NativeThemeAndroid::~NativeThemeAndroid() { 32 } 33 34 } // namespace ui 35