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_VIEWS_WINDOW_H_ | |
6 #define CHROME_BROWSER_UI_VIEWS_WINDOW_H_ | |
7 #pragma once | |
8 | |
9 #include "ui/gfx/native_widget_types.h" | |
10 | |
11 namespace views { | |
12 class Widget; | |
13 class WidgetDelegate; | |
14 } | |
15 | |
16 namespace browser { | |
17 | |
18 // Create a frameless window for given |delegate|. | |
19 views::Widget* CreateFramelessViewsWindow(gfx::NativeWindow parent, | |
20 views::WidgetDelegate* delegate); | |
21 | |
22 } // namespace browser | |
23 | |
24 #endif // CHROME_BROWSER_UI_VIEWS_WINDOW_H_ | |
OLD | NEW |