summaryrefslogtreecommitdiffstats
path: root/chrome/browser/themes/theme_service_win.h
blob: 0f0473df7d8937d65fbabdcaee1bf811282e766a (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
29
30
31
32
33
34
35
36
37
38
39
// Copyright 2016 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_WIN_H_
#define CHROME_BROWSER_THEMES_THEME_SERVICE_WIN_H_

#include "base/win/registry.h"
#include "chrome/browser/themes/theme_service.h"

class ThemeServiceWin : public ThemeService {
 public:
  ThemeServiceWin();
  ~ThemeServiceWin() override;

 private:
  // ThemeService:
  bool ShouldUseNativeFrame() const override;
  SkColor GetDefaultColor(int id, bool incognito) const override;

  // Returns true if the window frame color is determined by the DWM, i.e. this
  // is a native frame on Windows 10.
  bool ShouldUseDwmFrameColor() const;

  // Callback executed when |dwm_key_| is updated.  This re-reads the active
  // frame color and updates |dwm_frame_color_|.
  void OnDwmKeyUpdated();

  // Registry key containing the params that determine the DWM frame color.
  // This is only initialized on Windows 10.
  scoped_ptr<base::win::RegKey> dwm_key_;

  // The DWM frame color, if available; white otherwise.
  SkColor dwm_frame_color_;

  DISALLOW_COPY_AND_ASSIGN(ThemeServiceWin);
};

#endif  // CHROME_BROWSER_THEMES_THEME_SERVICE_WIN_H_