| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef UI_VIEWS_WIDGET_DESKTOP_ROOT_WINDOW_HOST_H_ | 5 #ifndef UI_VIEWS_WIDGET_DESKTOP_ROOT_WINDOW_HOST_H_ |
| 6 #define UI_VIEWS_WIDGET_DESKTOP_ROOT_WINDOW_HOST_H_ | 6 #define UI_VIEWS_WIDGET_DESKTOP_ROOT_WINDOW_HOST_H_ |
| 7 | 7 |
| 8 #include "ui/base/ui_base_types.h" | 8 #include "ui/base/ui_base_types.h" |
| 9 #include "ui/views/widget/widget.h" | 9 #include "ui/views/widget/widget.h" |
| 10 | 10 |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 virtual bool IsMinimized() const = 0; | 66 virtual bool IsMinimized() const = 0; |
| 67 | 67 |
| 68 virtual bool HasCapture() const = 0; | 68 virtual bool HasCapture() const = 0; |
| 69 | 69 |
| 70 virtual void SetAlwaysOnTop(bool always_on_top) = 0; | 70 virtual void SetAlwaysOnTop(bool always_on_top) = 0; |
| 71 | 71 |
| 72 virtual InputMethod* CreateInputMethod() = 0; | 72 virtual InputMethod* CreateInputMethod() = 0; |
| 73 virtual internal::InputMethodDelegate* GetInputMethodDelegate() = 0; | 73 virtual internal::InputMethodDelegate* GetInputMethodDelegate() = 0; |
| 74 | 74 |
| 75 virtual void SetWindowTitle(const string16& title) = 0; | 75 virtual void SetWindowTitle(const string16& title) = 0; |
| 76 |
| 77 virtual void ClearNativeFocus() = 0; |
| 76 }; | 78 }; |
| 77 | 79 |
| 78 } // namespace views | 80 } // namespace views |
| 79 | 81 |
| 80 #endif // UI_VIEWS_WIDGET_DESKTOP_ROOT_WINDOW_HOST_H_ | 82 #endif // UI_VIEWS_WIDGET_DESKTOP_ROOT_WINDOW_HOST_H_ |
| OLD | NEW |