OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_UI_WEBUI_MD_HISTORY_UI_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_MD_HISTORY_UI_H_ |
6 #define CHROME_BROWSER_UI_WEBUI_MD_HISTORY_UI_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_MD_HISTORY_UI_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "content/public/browser/web_ui_controller.h" | 9 #include "content/public/browser/web_ui_controller.h" |
10 #include "ui/base/layout.h" | 10 #include "ui/base/layout.h" |
11 | 11 |
12 class Profile; | 12 class Profile; |
13 | 13 |
14 namespace base { | 14 namespace base { |
15 class ListValue; | |
16 class RefCountedMemory; | 15 class RefCountedMemory; |
17 } | 16 } |
18 | 17 |
19 namespace content { | |
20 class WebUIDataSource; | |
21 } | |
22 | |
23 namespace user_prefs { | |
24 class PrefRegistrySyncable; | |
25 } | |
26 | |
27 class MdHistoryUI : public content::WebUIController { | 18 class MdHistoryUI : public content::WebUIController { |
28 public: | 19 public: |
29 explicit MdHistoryUI(content::WebUI* web_ui); | 20 explicit MdHistoryUI(content::WebUI* web_ui); |
30 ~MdHistoryUI() override; | 21 ~MdHistoryUI() override; |
31 | 22 |
32 static bool IsEnabled(Profile* profile); | 23 static bool IsEnabled(Profile* profile); |
33 | 24 |
34 // Reset the current list of features and explicitly set MD History enabled. | 25 // Reset the current list of features and explicitly set MD History enabled. |
35 static void SetEnabledForTesting(bool enabled); | 26 static void SetEnabledForTesting(bool enabled); |
36 | 27 |
37 static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry); | |
38 | |
39 static base::RefCountedMemory* GetFaviconResourceBytes( | 28 static base::RefCountedMemory* GetFaviconResourceBytes( |
40 ui::ScaleFactor scale_factor); | 29 ui::ScaleFactor scale_factor); |
41 | 30 |
42 private: | 31 private: |
43 // Handler for the "menuPromoShown" message from the page. No arguments. | |
44 void HandleMenuPromoShown(const base::ListValue* args); | |
45 | |
46 content::WebUIDataSource* data_source_; // weak | |
47 | |
48 DISALLOW_COPY_AND_ASSIGN(MdHistoryUI); | 32 DISALLOW_COPY_AND_ASSIGN(MdHistoryUI); |
49 }; | 33 }; |
50 | 34 |
51 #endif // CHROME_BROWSER_UI_WEBUI_MD_HISTORY_UI_H_ | 35 #endif // CHROME_BROWSER_UI_WEBUI_MD_HISTORY_UI_H_ |
OLD | NEW |