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 13 NativeTheme* NativeTheme::instance() { 14 return NativeThemeAndroid::instance(); 15 } 16 17 // static 18 NativeThemeAndroid* NativeThemeAndroid::instance() { 19 CR_DEFINE_STATIC_LOCAL(NativeThemeAndroid, s_native_theme, ()); 20 return &s_native_theme; 21 } 22 23 SkColor NativeThemeAndroid::GetSystemColor(ColorId color_id) const { 24 NOTIMPLEMENTED(); 25 return SK_ColorBLACK; 26 } 27 28 NativeThemeAndroid::NativeThemeAndroid() { 29 } 30 31 NativeThemeAndroid::~NativeThemeAndroid() { 32 } 33 34 } // namespace ui 35