Index: chrome/browser/ui/webui/md_feedback/md_feedback_ui.h |
diff --git a/chrome/browser/ui/webui/md_feedback/md_feedback_ui.h b/chrome/browser/ui/webui/md_feedback/md_feedback_ui.h |
index 202a6edaae32f4feb09a4b269d830c470607dcf6..fc71365bbd6f93c47067c65e738ea89ad3c70279 100644 |
--- a/chrome/browser/ui/webui/md_feedback/md_feedback_ui.h |
+++ b/chrome/browser/ui/webui/md_feedback/md_feedback_ui.h |
@@ -6,18 +6,26 @@ |
#define CHROME_BROWSER_UI_WEBUI_MD_FEEDBACK_MD_FEEDBACK_UI_H_ |
#include "base/macros.h" |
+#include "chrome/browser/profiles/profile.h" |
#include "content/public/browser/web_ui_controller.h" |
namespace content { |
class BrowserContext; |
} // namespace content |
+class MdFeedbackWebUIMessageHandler; |
+ |
// The WebUI for chrome://feedback. |
class MdFeedbackUI : public content::WebUIController { |
public: |
explicit MdFeedbackUI(content::WebUI* web_ui); |
~MdFeedbackUI() override; |
+ |
+ Profile* profile() { return profile_; } |
+ |
private: |
+ Profile* profile_; |
+ |
DISALLOW_COPY_AND_ASSIGN(MdFeedbackUI); |
}; |