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 Grab(DOMView* dom_view) OVERRIDE; |
| 20 virtual views::Widget* GetWidget() OVERRIDE; |
| 21 |
| 22 private: |
| 23 friend class LockWindow; |
| 24 |
| 25 LockWindowAura(); |
| 26 virtual ~LockWindowAura(); |
| 27 |
| 28 // Initialize the Aura lock window. |
| 29 void Init(); |
| 30 |
| 31 DISALLOW_COPY_AND_ASSIGN(LockWindowAura); |
| 32 }; |
| 33 |
| 34 } // namespace chromeos |
| 35 |
| 36 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOCK_WINDOW_AURA_H_ |
OLD | NEW |