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 CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 virtual gfx::NativeView GetNativeView() const override; | 147 virtual gfx::NativeView GetNativeView() const override; |
148 virtual gfx::NativeViewId GetNativeViewId() const override; | 148 virtual gfx::NativeViewId GetNativeViewId() const override; |
149 virtual gfx::NativeViewAccessible GetNativeViewAccessible() override; | 149 virtual gfx::NativeViewAccessible GetNativeViewAccessible() override; |
150 virtual ui::TextInputClient* GetTextInputClient() override; | 150 virtual ui::TextInputClient* GetTextInputClient() override; |
151 virtual bool HasFocus() const override; | 151 virtual bool HasFocus() const override; |
152 virtual bool IsSurfaceAvailableForCopy() const override; | 152 virtual bool IsSurfaceAvailableForCopy() const override; |
153 virtual void Show() override; | 153 virtual void Show() override; |
154 virtual void Hide() override; | 154 virtual void Hide() override; |
155 virtual bool IsShowing() override; | 155 virtual bool IsShowing() override; |
156 virtual gfx::Rect GetViewBounds() const override; | 156 virtual gfx::Rect GetViewBounds() const override; |
157 virtual void SetBackgroundOpaque(bool opaque) override; | 157 virtual void SetBackgroundColor(SkColor color) override; |
158 virtual gfx::Size GetVisibleViewportSize() const override; | 158 virtual gfx::Size GetVisibleViewportSize() const override; |
159 virtual void SetInsets(const gfx::Insets& insets) override; | 159 virtual void SetInsets(const gfx::Insets& insets) override; |
160 | 160 |
161 // Overridden from RenderWidgetHostViewBase: | 161 // Overridden from RenderWidgetHostViewBase: |
162 virtual void InitAsPopup(RenderWidgetHostView* parent_host_view, | 162 virtual void InitAsPopup(RenderWidgetHostView* parent_host_view, |
163 const gfx::Rect& pos) override; | 163 const gfx::Rect& pos) override; |
164 virtual void InitAsFullscreen( | 164 virtual void InitAsFullscreen( |
165 RenderWidgetHostView* reference_host_view) override; | 165 RenderWidgetHostView* reference_host_view) override; |
166 virtual void WasShown() override; | 166 virtual void WasShown() override; |
167 virtual void WasHidden() override; | 167 virtual void WasHidden() override; |
(...skipping 472 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
640 // view, so we can ensure the window hasn't moved between copying from the | 640 // view, so we can ensure the window hasn't moved between copying from the |
641 // compositing surface and showing the disambiguation popup. | 641 // compositing surface and showing the disambiguation popup. |
642 gfx::Vector2dF disambiguation_scroll_offset_; | 642 gfx::Vector2dF disambiguation_scroll_offset_; |
643 | 643 |
644 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 644 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
645 }; | 645 }; |
646 | 646 |
647 } // namespace content | 647 } // namespace content |
648 | 648 |
649 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 649 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
OLD | NEW |