summaryrefslogtreecommitdiffstats
path: root/ui/gfx/native_theme_gtk.cc
blob: ded99849de5a17b469275bbbd38ab6b7ddd27e36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// 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.

#include "ui/gfx/native_theme_gtk.h"

#include "base/basictypes.h"

namespace gfx {

// static
const NativeTheme* NativeTheme::instance() {
  return NativeThemeGtk::instance();
}

// static
const NativeThemeGtk* NativeThemeGtk::instance() {
  CR_DEFINE_STATIC_LOCAL(NativeThemeGtk, s_native_theme, ());
  return &s_native_theme;
}

NativeThemeGtk::NativeThemeGtk() {
}

NativeThemeGtk::~NativeThemeGtk() {
}

}  // namespace gfx