| 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; |
| 15 class RefCountedMemory; | 16 class RefCountedMemory; |
| 16 } | 17 } |
| 17 | 18 |
| 19 namespace content { |
| 20 class WebUIDataSource; |
| 21 } |
| 22 |
| 23 namespace user_prefs { |
| 24 class PrefRegistrySyncable; |
| 25 } |
| 26 |
| 18 class MdHistoryUI : public content::WebUIController { | 27 class MdHistoryUI : public content::WebUIController { |
| 19 public: | 28 public: |
| 20 explicit MdHistoryUI(content::WebUI* web_ui); | 29 explicit MdHistoryUI(content::WebUI* web_ui); |
| 21 ~MdHistoryUI() override; | 30 ~MdHistoryUI() override; |
| 22 | 31 |
| 23 static bool IsEnabled(Profile* profile); | 32 static bool IsEnabled(Profile* profile); |
| 24 | 33 |
| 25 // Reset the current list of features and explicitly set MD History enabled. | 34 // Reset the current list of features and explicitly set MD History enabled. |
| 26 static void SetEnabledForTesting(bool enabled); | 35 static void SetEnabledForTesting(bool enabled); |
| 27 | 36 |
| 37 static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry); |
| 38 |
| 28 static base::RefCountedMemory* GetFaviconResourceBytes( | 39 static base::RefCountedMemory* GetFaviconResourceBytes( |
| 29 ui::ScaleFactor scale_factor); | 40 ui::ScaleFactor scale_factor); |
| 30 | 41 |
| 31 private: | 42 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 |
| 32 DISALLOW_COPY_AND_ASSIGN(MdHistoryUI); | 48 DISALLOW_COPY_AND_ASSIGN(MdHistoryUI); |
| 33 }; | 49 }; |
| 34 | 50 |
| 35 #endif // CHROME_BROWSER_UI_WEBUI_MD_HISTORY_UI_H_ | 51 #endif // CHROME_BROWSER_UI_WEBUI_MD_HISTORY_UI_H_ |
| OLD | NEW |