blob: abdde1fe657cc4c26381fd3e07ff4172286aa52d (
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
|
// Copyright 2013 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 CHROME_BROWSER_THEMES_THEME_SERVICE_AURAX11_H_
#define CHROME_BROWSER_THEMES_THEME_SERVICE_AURAX11_H_
#include "chrome/browser/themes/theme_service.h"
// A subclass of ThemeService that manages the CustomThemeSupplier which
// provides the native X11 theme.
class ThemeServiceAuraX11 : public ThemeService {
public:
ThemeServiceAuraX11();
virtual ~ThemeServiceAuraX11();
// Overridden from ThemeService:
virtual bool ShouldInitWithSystemTheme() const OVERRIDE;
virtual void UseSystemTheme() OVERRIDE;
virtual bool UsingDefaultTheme() const OVERRIDE;
virtual bool UsingSystemTheme() const OVERRIDE;
private:
DISALLOW_COPY_AND_ASSIGN(ThemeServiceAuraX11);
};
#endif // CHROME_BROWSER_THEMES_THEME_SERVICE_AURAX11_H_
|