Roll src/third_party/WebKit 2085a03:f2395b6 (svn 200318:200329)
[chromium-blink-merge.git] / ui / native_theme / native_theme_observer.h
blobd38d66368a35319a694a89aaf0e5e8e598fed208
1 // Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef UI_NATIVE_THEME_NATIVE_THEME_OBSERVER_H_
6 #define UI_NATIVE_THEME_NATIVE_THEME_OBSERVER_H_
8 #include "ui/native_theme/native_theme_export.h"
10 namespace ui {
12 class NativeTheme;
14 // Observers which are notified when the native theme changes.
15 class NATIVE_THEME_EXPORT NativeThemeObserver {
16 public:
17 // Called when the native theme changes. The observed theme is passed so that
18 // observers may handle changes to their associated native theme instances.
19 virtual void OnNativeThemeUpdated(ui::NativeTheme* observed_theme) = 0;
21 protected:
22 virtual ~NativeThemeObserver();
25 } // namespace ui
27 #endif // UI_NATIVE_THEME_NATIVE_THEME_OBSERVER_H_