OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2011 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_CHROMEOS_LOGIN_LOCK_WINDOW_AURA_H_ | |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_LOCK_WINDOW_AURA_H_ | |
7 #pragma once | |
8 | |
9 #include "base/compiler_specific.h" | |
10 #include "chrome/browser/chromeos/login/lock_window.h" | |
11 #include "ui/views/widget/widget.h" | |
12 | |
13 namespace chromeos { | |
14 | |
15 class LockWindowAura : public views::Widget, | |
16 public LockWindow { | |
17 public: | |
18 // LockWindow implementation: | |
19 virtual void SetContentsView(views::View* content) OVERRIDE; | |
20 virtual void Show(DOMView* dom_view) OVERRIDE; | |
21 virtual views::Widget* GetWidget() OVERRIDE; | |
22 | |
23 private: | |
24 friend class LockWindow; | |
25 | |
26 LockWindowAura(); | |
27 virtual ~LockWindowAura(); | |
28 | |
29 // Initialize the Aura lock window. | |
30 void Init(); | |
oshima
2011/11/30 23:41:07
DISALLOW_COPY_AND_ASSIGN
flackr
2011/12/01 21:40:40
Done.
| |
31 }; | |
32 | |
33 } // namespace chromeos | |
34 | |
35 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOCK_WINDOW_AURA_H_ | |
OLD | NEW |