Chromium Code Reviews| Index: chrome/browser/ui/webui/md_feedback/md_feedback_dialog_controller.h |
| diff --git a/chrome/browser/ui/webui/md_feedback/md_feedback_dialog_controller.h b/chrome/browser/ui/webui/md_feedback/md_feedback_dialog_controller.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..75e9b8f7f058d5845e53bb97fd05be46885733b2 |
| --- /dev/null |
| +++ b/chrome/browser/ui/webui/md_feedback/md_feedback_dialog_controller.h |
| @@ -0,0 +1,24 @@ |
| +// Copyright 2016 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_BROWSER_UI_WEBUI_MD_FEEDBACK_MD_FEEDBACK_DIALOG_CONTROLLER_H_ |
| +#define CHROME_BROWSER_UI_WEBUI_MD_FEEDBACK_MD_FEEDBACK_DIALOG_CONTROLLER_H_ |
| + |
| +#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.
|
| + |
| +class MdFeedbackDialogController { |
| + public: |
| + ~MdFeedbackDialogController(); |
| + |
| + static MdFeedbackDialogController* GetOrCreate(); |
| + |
| + void Show(content::BrowserContext* browser_context); |
| + |
| + private: |
| + MdFeedbackDialogController(); |
| + |
| + DISALLOW_COPY_AND_ASSIGN(MdFeedbackDialogController); |
| +}; |
| + |
| +#endif // CHROME_BROWSER_UI_WEBUI_MD_FEEDBACK_MD_FEEDBACK_DIALOG_CONTROLLER_H_ |