OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 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 CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ |
6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 RenderWidgetHostView* reference_host_view) OVERRIDE; | 66 RenderWidgetHostView* reference_host_view) OVERRIDE; |
67 virtual RenderWidgetHost* GetRenderWidgetHost() const OVERRIDE; | 67 virtual RenderWidgetHost* GetRenderWidgetHost() const OVERRIDE; |
68 virtual void DidBecomeSelected() OVERRIDE; | 68 virtual void DidBecomeSelected() OVERRIDE; |
69 virtual void WasHidden() OVERRIDE; | 69 virtual void WasHidden() OVERRIDE; |
70 virtual void SetSize(const gfx::Size& size) OVERRIDE; | 70 virtual void SetSize(const gfx::Size& size) OVERRIDE; |
71 virtual void SetBounds(const gfx::Rect& rect) OVERRIDE; | 71 virtual void SetBounds(const gfx::Rect& rect) OVERRIDE; |
72 virtual gfx::NativeView GetNativeView() const OVERRIDE; | 72 virtual gfx::NativeView GetNativeView() const OVERRIDE; |
73 virtual gfx::NativeViewId GetNativeViewId() const OVERRIDE; | 73 virtual gfx::NativeViewId GetNativeViewId() const OVERRIDE; |
74 virtual void MovePluginWindows( | 74 virtual void MovePluginWindows( |
75 const std::vector<webkit::npapi::WebPluginGeometry>& moves) OVERRIDE; | 75 const std::vector<webkit::npapi::WebPluginGeometry>& moves) OVERRIDE; |
76 virtual bool HasFocus() OVERRIDE; | 76 virtual bool HasFocus() const OVERRIDE; |
77 virtual void Show() OVERRIDE; | 77 virtual void Show() OVERRIDE; |
78 virtual void Hide() OVERRIDE; | 78 virtual void Hide() OVERRIDE; |
79 virtual bool IsShowing() OVERRIDE; | 79 virtual bool IsShowing() OVERRIDE; |
80 virtual gfx::Rect GetViewBounds() const OVERRIDE; | 80 virtual gfx::Rect GetViewBounds() const OVERRIDE; |
81 virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE; | 81 virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE; |
82 virtual void SetIsLoading(bool is_loading) OVERRIDE; | 82 virtual void SetIsLoading(bool is_loading) OVERRIDE; |
83 virtual void TextInputStateChanged(ui::TextInputType type, | 83 virtual void TextInputStateChanged(ui::TextInputType type, |
84 bool can_compose_inline) OVERRIDE; | 84 bool can_compose_inline) OVERRIDE; |
85 virtual void ImeCancelComposition() OVERRIDE; | 85 virtual void ImeCancelComposition() OVERRIDE; |
86 virtual void DidUpdateBackingStore( | 86 virtual void DidUpdateBackingStore( |
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
317 | 317 |
318 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT) | 318 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT) |
319 std::map<uint64, scoped_refptr<AcceleratedSurfaceContainerLinux> > | 319 std::map<uint64, scoped_refptr<AcceleratedSurfaceContainerLinux> > |
320 accelerated_surface_containers_; | 320 accelerated_surface_containers_; |
321 #endif | 321 #endif |
322 | 322 |
323 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewViews); | 323 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewViews); |
324 }; | 324 }; |
325 | 325 |
326 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ | 326 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ |
OLD | NEW |