summaryrefslogtreecommitdiffstats
path: root/ui/gfx/native_theme_gtk.cc
blob: 00ddc5f438650c4b2a88cf6ae8ce4f77bc256441 (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
// 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"

namespace gfx {

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

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

NativeThemeGtk::NativeThemeGtk() {
}

NativeThemeGtk::~NativeThemeGtk() {
}

}  // namespace gfx