Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1939)

Unified Diff: chrome/browser/ui/webui/md_feedback/md_feedback_ui.h

Issue 2190653003: [Md Feedback] Add initial data population for dialog. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..5da469a090d8a490ecb9920976fcc8ed1fce0feb 100644
--- a/chrome/browser/ui/webui/md_feedback/md_feedback_ui.h
+++ b/chrome/browser/ui/webui/md_feedback/md_feedback_ui.h
@@ -12,12 +12,18 @@ 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;
private:
+ // Owned by the |web_ui| passed in the ctor, and guaranteed to be deleted
+ // only after it has deleted |this|.
+ MdFeedbackWebUIMessageHandler* handler_;
+
DISALLOW_COPY_AND_ASSIGN(MdFeedbackUI);
};

Powered by Google App Engine
This is Rietveld 408576698