From 1e25fbf5e01d0ea8045c43288ee58fc7d0b3a3a2 Mon Sep 17 00:00:00 2001 From: "tfarina@chromium.org" Date: Mon, 14 May 2012 23:10:10 +0000 Subject: Revert 136996 - ui: Move NativeTheme files into ui/base/native_theme/ directory. BUG=103304,125844 R=ben@chromium.org TBR=tony@chromium.org Review URL: https://chromiumcodereview.appspot.com/10310136 TBR=tfarina@chromium.org Review URL: https://chromiumcodereview.appspot.com/10387121 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137003 0039d316-1c4b-4281-b951-d872f2087c98 --- ui/gfx/native_theme_gtk.h | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 ui/gfx/native_theme_gtk.h (limited to 'ui/gfx/native_theme_gtk.h') diff --git a/ui/gfx/native_theme_gtk.h b/ui/gfx/native_theme_gtk.h new file mode 100644 index 0000000..2fb205c --- /dev/null +++ b/ui/gfx/native_theme_gtk.h @@ -0,0 +1,27 @@ +// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef UI_GFX_NATIVE_THEME_GTK_H_ +#define UI_GFX_NATIVE_THEME_GTK_H_ +#pragma once + +#include "ui/gfx/native_theme_base.h" + +namespace gfx { + +// GTK implementation of native theme support. +class NativeThemeGtk : public NativeThemeBase { + public: + static const NativeThemeGtk* instance(); + + virtual SkColor GetSystemColor(ColorId color_id) const OVERRIDE; + + private: + NativeThemeGtk(); + virtual ~NativeThemeGtk(); +}; + +} // namespace gfx + +#endif // UI_GFX_NATIVE_THEME_GTK_H_ -- cgit v1.1