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 <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 int gpu_host_id) OVERRIDE; | 120 int gpu_host_id) OVERRIDE; |
121 virtual void AcceleratedSurfaceSuspend() OVERRIDE; | 121 virtual void AcceleratedSurfaceSuspend() OVERRIDE; |
122 virtual bool HasAcceleratedSurface(const gfx::Size& desired_size) OVERRIDE; | 122 virtual bool HasAcceleratedSurface(const gfx::Size& desired_size) OVERRIDE; |
123 virtual void AcceleratedSurfaceNew( | 123 virtual void AcceleratedSurfaceNew( |
124 int32 width_in_pixel, | 124 int32 width_in_pixel, |
125 int32 height_in_pixel, | 125 int32 height_in_pixel, |
126 uint64 surface_id) OVERRIDE; | 126 uint64 surface_id) OVERRIDE; |
127 virtual void AcceleratedSurfaceRelease(uint64 surface_id) OVERRIDE; | 127 virtual void AcceleratedSurfaceRelease(uint64 surface_id) OVERRIDE; |
128 virtual void GetScreenInfo(WebKit::WebScreenInfo* results) OVERRIDE; | 128 virtual void GetScreenInfo(WebKit::WebScreenInfo* results) OVERRIDE; |
129 virtual gfx::Rect GetBoundsInRootWindow() OVERRIDE; | 129 virtual gfx::Rect GetBoundsInRootWindow() OVERRIDE; |
130 virtual void ProcessTouchAck(WebKit::WebInputEvent::Type type, | 130 virtual void ProcessTouchAck(bool processed) OVERRIDE; |
131 bool processed) OVERRIDE; | |
132 virtual void SetHasHorizontalScrollbar( | 131 virtual void SetHasHorizontalScrollbar( |
133 bool has_horizontal_scrollbar) OVERRIDE; | 132 bool has_horizontal_scrollbar) OVERRIDE; |
134 virtual void SetScrollOffsetPinning( | 133 virtual void SetScrollOffsetPinning( |
135 bool is_pinned_to_left, bool is_pinned_to_right) OVERRIDE; | 134 bool is_pinned_to_left, bool is_pinned_to_right) OVERRIDE; |
136 virtual gfx::GLSurfaceHandle GetCompositingSurface() OVERRIDE; | 135 virtual gfx::GLSurfaceHandle GetCompositingSurface() OVERRIDE; |
137 virtual bool LockMouse() OVERRIDE; | 136 virtual bool LockMouse() OVERRIDE; |
138 virtual void UnlockMouse() OVERRIDE; | 137 virtual void UnlockMouse() OVERRIDE; |
139 | 138 |
140 // Overridden from ui::TextInputClient: | 139 // Overridden from ui::TextInputClient: |
141 virtual void SetCompositionText( | 140 virtual void SetCompositionText( |
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
392 // Used to track the state of the window we're created from. Only used when | 391 // Used to track the state of the window we're created from. Only used when |
393 // created fullscreen. | 392 // created fullscreen. |
394 scoped_ptr<aura::WindowTracker> host_tracker_; | 393 scoped_ptr<aura::WindowTracker> host_tracker_; |
395 | 394 |
396 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 395 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
397 }; | 396 }; |
398 | 397 |
399 } // namespace content | 398 } // namespace content |
400 | 399 |
401 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 400 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
OLD | NEW |