Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2012 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_METROIZER_UI_WIN_H_ | |
| 6 #define CHROME_BROWSER_UI_WEBUI_METROIZER_UI_WIN_H_ | |
| 7 #pragma once | |
| 8 | |
| 9 #include "content/public/browser/web_ui_controller.h" | |
| 10 | |
| 11 class Browser; | |
| 12 class Profile; | |
| 13 | |
| 14 class MetroizerUI : public content::WebUIController { | |
| 15 public: | |
| 16 explicit MetroizerUI(content::WebUI* web_ui); | |
| 17 | |
| 18 // Present metroizer UI either in a new singleton tab or in a dialog window. | |
| 19 static void Show(Profile* profile, Browser* browser, bool dialog); | |
| 20 | |
| 21 private: | |
| 22 DISALLOW_COPY_AND_ASSIGN(MetroizerUI); | |
| 23 }; | |
| 24 | |
| 25 #endif // CHROME_BROWSER_UI_WEBUI_METROIZER_UI_WIN_H_ | |
| 26 | |
|
grt (UTC plus 2)
2012/06/20 19:42:12
nit: remove empty line
motek.
2012/06/20 22:02:29
Done.
| |
| OLD | NEW |