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" | |
| 9 | |
| 10 class MdFeedbackDialogController { | |
|
afakhry
2016/08/02 22:15:56
Please document your class, its responsibility and
apacible
2016/08/09 22:11:14
Done.
| |
| 11 public: | |
| 12 ~MdFeedbackDialogController(); | |
|
afakhry
2016/08/02 22:15:56
You can just say
~MdFeedbackDialogController() =
apacible
2016/08/09 22:11:14
Done.
| |
| 13 | |
| 14 static MdFeedbackDialogController* GetOrCreate(); | |
| 15 void Show(content::BrowserContext* browser_context); | |
| 16 | |
| 17 private: | |
| 18 MdFeedbackDialogController(); | |
| 19 | |
| 20 DISALLOW_COPY_AND_ASSIGN(MdFeedbackDialogController); | |
| 21 }; | |
| 22 | |
| 23 #endif // CHROME_BROWSER_UI_WEBUI_MD_FEEDBACK_MD_FEEDBACK_DIALOG_CONTROLLER_H_ | |
| OLD | NEW |