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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 virtual void DestroyPluginContainer(gfx::PluginWindowHandle id) OVERRIDE; | 111 virtual void DestroyPluginContainer(gfx::PluginWindowHandle id) OVERRIDE; |
112 #endif | 112 #endif |
113 virtual void SetVisuallyDeemphasized(const SkColor* color, | 113 virtual void SetVisuallyDeemphasized(const SkColor* color, |
114 bool animate) OVERRIDE; | 114 bool animate) OVERRIDE; |
115 virtual void UnhandledWheelEvent( | 115 virtual void UnhandledWheelEvent( |
116 const WebKit::WebMouseWheelEvent& event) OVERRIDE; | 116 const WebKit::WebMouseWheelEvent& event) OVERRIDE; |
117 virtual void SetHasHorizontalScrollbar( | 117 virtual void SetHasHorizontalScrollbar( |
118 bool has_horizontal_scrollbar) OVERRIDE; | 118 bool has_horizontal_scrollbar) OVERRIDE; |
119 virtual void SetScrollOffsetPinning( | 119 virtual void SetScrollOffsetPinning( |
120 bool is_pinned_to_left, bool is_pinned_to_right) OVERRIDE; | 120 bool is_pinned_to_left, bool is_pinned_to_right) OVERRIDE; |
121 #if defined(OS_WIN) | 121 #if defined(OS_WIN) && !defined(USE_AURA) |
122 virtual void WillWmDestroy() OVERRIDE; | 122 virtual void WillWmDestroy() OVERRIDE; |
123 #endif | 123 #endif |
124 virtual gfx::PluginWindowHandle GetCompositingSurface() OVERRIDE; | 124 virtual gfx::PluginWindowHandle GetCompositingSurface() OVERRIDE; |
125 virtual bool LockMouse() OVERRIDE; | 125 virtual bool LockMouse() OVERRIDE; |
126 virtual void UnlockMouse() OVERRIDE; | 126 virtual void UnlockMouse() OVERRIDE; |
127 | 127 |
128 // Overridden from views::TouchSelectionClientView. | 128 // Overridden from views::TouchSelectionClientView. |
129 virtual void SelectRect(const gfx::Point& start, | 129 virtual void SelectRect(const gfx::Point& start, |
130 const gfx::Point& end) OVERRIDE; | 130 const gfx::Point& end) OVERRIDE; |
131 | 131 |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
312 | 312 |
313 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT) | 313 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT) |
314 std::map<uint64, scoped_refptr<AcceleratedSurfaceContainerLinux> > | 314 std::map<uint64, scoped_refptr<AcceleratedSurfaceContainerLinux> > |
315 accelerated_surface_containers_; | 315 accelerated_surface_containers_; |
316 #endif | 316 #endif |
317 | 317 |
318 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewViews); | 318 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewViews); |
319 }; | 319 }; |
320 | 320 |
321 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ | 321 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ |
OLD | NEW |