Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(104)

Side by Side Diff: chrome/browser/ui/webui/metroizer_ui_win.h

Issue 10539169: Prototype version of the first-run dialog for Windows 8 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: An oops. Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698