Chromium Code Reviews| OLD | NEW |
|---|---|
| (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_ | |
| OLD | NEW |