Chromium Code Reviews| 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_UI_TOUCH_FRAME_KEYBOARD_CONTAINER_VIEW_H_ | |
| 6 #define CHROME_BROWSER_UI_TOUCH_FRAME_KEYBOARD_CONTAINER_VIEW_H_ | |
| 7 #pragma once | |
| 8 | |
| 9 #include "views/view.h" | |
| 10 | |
| 11 class DOMView; | |
| 12 class Profile; | |
| 13 | |
| 14 /** | |
|
sky
2011/01/05 16:52:51
Use C++ style comments, not Java.
bryeung
2011/01/10 22:32:19
Oops. Sorry.
| |
| 15 * A class that contains and decorates the virtual keyboard. | |
| 16 * | |
| 17 * This class is also responsible for managing focus of all views related to | |
| 18 * the keyboard to prevent them from interfering with the ClientView. | |
| 19 */ | |
| 20 class KeyboardContainerView : public views::View { | |
| 21 public: | |
| 22 explicit KeyboardContainerView(Profile* profile); | |
| 23 virtual ~KeyboardContainerView(); | |
| 24 | |
| 25 // Overridden from views::View | |
| 26 virtual void Layout(); | |
| 27 | |
| 28 private: | |
| 29 DOMView* dom_view_; | |
| 30 | |
| 31 DISALLOW_COPY_AND_ASSIGN(KeyboardContainerView); | |
| 32 }; | |
| 33 | |
| 34 #endif // CHROME_BROWSER_UI_TOUCH_FRAME_KEYBOARD_CONTAINER_VIEW_H_ | |
| OLD | NEW |