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

Side by Side Diff: chrome/browser/ui/webui/md_feedback/md_feedback_dialog_controller.h

Issue 2021753005: [MD Feedback] Add basic chrome://feedback dialog. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_UI_WEBUI_MD_FEEDBACK_MD_FEEDBACK_DIALOG_CONTROLLER_H_
6 #define CHROME_BROWSER_UI_WEBUI_MD_FEEDBACK_MD_FEEDBACK_DIALOG_CONTROLLER_H_
7
8 #include "content/public/browser/browser_context.h"
imcheng 2016/06/02 04:19:10 content::BrowserContext can be forward declared in
apacible 2016/06/02 18:04:20 Done.
9
10 class MdFeedbackDialogController {
11 public:
12 ~MdFeedbackDialogController();
13
14 static MdFeedbackDialogController* GetOrCreate();
15
16 void Show(content::BrowserContext* browser_context);
17
18 private:
19 MdFeedbackDialogController();
20
21 DISALLOW_COPY_AND_ASSIGN(MdFeedbackDialogController);
22 };
23
24 #endif // CHROME_BROWSER_UI_WEBUI_MD_FEEDBACK_MD_FEEDBACK_DIALOG_CONTROLLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698