blob: 56161bd27d742dec65add96fffaebf81ff34106e (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
// Copyright (c) 2015 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_UI_WEBUI_SETTINGS_APPEARANCE_HANDLER_H_
#define CHROME_BROWSER_UI_WEBUI_SETTINGS_APPEARANCE_HANDLER_H_
#include "base/macros.h"
#include "chrome/browser/ui/webui/settings/md_settings_ui.h"
#include "content/public/browser/notification_observer.h"
#include "content/public/browser/notification_registrar.h"
namespace base {
class ListValue;
}
namespace content {
class WebUI;
}
class Profile;
namespace settings {
// Chrome "Appearance" settings page UI handler.
class AppearanceHandler : public SettingsPageUIHandler,
public content::NotificationObserver {
public:
explicit AppearanceHandler(content::WebUI* webui);
~AppearanceHandler() override;
// SettingsPageUIHandler implementation.
void RegisterMessages() override;
private:
// content::NotificationObserver implementation.
void Observe(int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) override;
// Queries the enabled state of the reset-theme control.
base::FundamentalValue QueryResetThemeEnabledState();
// Resets the UI theme of the browser to the default theme.
void ResetTheme(const base::ListValue*);
// Sends the enabled state of the reset-theme control to the JS.
void GetResetThemeEnabled(const base::ListValue* args);
Profile* profile_; // Weak pointer.
// Used to register for relevant notifications.
content::NotificationRegistrar registrar_;
DISALLOW_COPY_AND_ASSIGN(AppearanceHandler);
};
} // namespace settings
#endif // CHROME_BROWSER_UI_WEBUI_SETTINGS_APPEARANCE_HANDLER_H_
|