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_ | |
|
sky
2012/06/20 22:34:45
This file should be metroizer_ui. Although as ment
grt (UTC plus 2)
2012/06/21 15:18:43
i had suggested having it be _win.{cc,h} so that i
motek.
2012/06/21 18:28:10
I renamed the class and the file (and pretty much
sky
2012/06/21 19:39:37
You don't need _win in the name, you just need to
| |
| 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_ | |
| OLD | NEW |