| 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_NATIVE_WIDGET_AURA_H_ | 5 #ifndef UI_VIEWS_WIDGET_NATIVE_WIDGET_AURA_H_ |
| 6 #define UI_VIEWS_WIDGET_NATIVE_WIDGET_AURA_H_ | 6 #define UI_VIEWS_WIDGET_NATIVE_WIDGET_AURA_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/memory/scoped_vector.h" | 9 #include "base/memory/scoped_vector.h" |
| 10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 ui::AccessibilityTypes::Event event_type) OVERRIDE; | 67 ui::AccessibilityTypes::Event event_type) OVERRIDE; |
| 68 virtual void SetCapture() OVERRIDE; | 68 virtual void SetCapture() OVERRIDE; |
| 69 virtual void ReleaseCapture() OVERRIDE; | 69 virtual void ReleaseCapture() OVERRIDE; |
| 70 virtual bool HasCapture() const OVERRIDE; | 70 virtual bool HasCapture() const OVERRIDE; |
| 71 virtual InputMethod* CreateInputMethod() OVERRIDE; | 71 virtual InputMethod* CreateInputMethod() OVERRIDE; |
| 72 virtual void CenterWindow(const gfx::Size& size) OVERRIDE; | 72 virtual void CenterWindow(const gfx::Size& size) OVERRIDE; |
| 73 virtual void GetWindowPlacement( | 73 virtual void GetWindowPlacement( |
| 74 gfx::Rect* bounds, | 74 gfx::Rect* bounds, |
| 75 ui::WindowShowState* maximized) const OVERRIDE; | 75 ui::WindowShowState* maximized) const OVERRIDE; |
| 76 virtual void SetWindowTitle(const string16& title) OVERRIDE; | 76 virtual void SetWindowTitle(const string16& title) OVERRIDE; |
| 77 virtual void SetWindowIcons(const SkBitmap& window_icon, | 77 virtual void SetWindowIcons(const gfx::ImageSkia& window_icon, |
| 78 const SkBitmap& app_icon) OVERRIDE; | 78 const gfx::ImageSkia& app_icon) OVERRIDE; |
| 79 virtual void SetAccessibleName(const string16& name) OVERRIDE; | 79 virtual void SetAccessibleName(const string16& name) OVERRIDE; |
| 80 virtual void SetAccessibleRole(ui::AccessibilityTypes::Role role) OVERRIDE; | 80 virtual void SetAccessibleRole(ui::AccessibilityTypes::Role role) OVERRIDE; |
| 81 virtual void SetAccessibleState(ui::AccessibilityTypes::State state) OVERRIDE; | 81 virtual void SetAccessibleState(ui::AccessibilityTypes::State state) OVERRIDE; |
| 82 virtual void InitModalType(ui::ModalType modal_type) OVERRIDE; | 82 virtual void InitModalType(ui::ModalType modal_type) OVERRIDE; |
| 83 virtual gfx::Rect GetWindowScreenBounds() const OVERRIDE; | 83 virtual gfx::Rect GetWindowScreenBounds() const OVERRIDE; |
| 84 virtual gfx::Rect GetClientAreaScreenBounds() const OVERRIDE; | 84 virtual gfx::Rect GetClientAreaScreenBounds() const OVERRIDE; |
| 85 virtual gfx::Rect GetRestoredBounds() const OVERRIDE; | 85 virtual gfx::Rect GetRestoredBounds() const OVERRIDE; |
| 86 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE; | 86 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE; |
| 87 virtual void SetSize(const gfx::Size& size) OVERRIDE; | 87 virtual void SetSize(const gfx::Size& size) OVERRIDE; |
| 88 virtual void StackAbove(gfx::NativeView native_view) OVERRIDE; | 88 virtual void StackAbove(gfx::NativeView native_view) OVERRIDE; |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 | 195 |
| 196 scoped_ptr<DropHelper> drop_helper_; | 196 scoped_ptr<DropHelper> drop_helper_; |
| 197 int last_drop_operation_; | 197 int last_drop_operation_; |
| 198 | 198 |
| 199 DISALLOW_COPY_AND_ASSIGN(NativeWidgetAura); | 199 DISALLOW_COPY_AND_ASSIGN(NativeWidgetAura); |
| 200 }; | 200 }; |
| 201 | 201 |
| 202 } // namespace views | 202 } // namespace views |
| 203 | 203 |
| 204 #endif // UI_VIEWS_WIDGET_NATIVE_WIDGET_AURA_H_ | 204 #endif // UI_VIEWS_WIDGET_NATIVE_WIDGET_AURA_H_ |
| OLD | NEW |