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_TEST_TEST_RENDER_VIEW_HOST_H_ | 5 #ifndef CONTENT_TEST_TEST_RENDER_VIEW_HOST_H_ |
6 #define CONTENT_TEST_TEST_RENDER_VIEW_HOST_H_ | 6 #define CONTENT_TEST_TEST_RENDER_VIEW_HOST_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
131 int gpu_host_id) OVERRIDE; | 131 int gpu_host_id) OVERRIDE; |
132 virtual void AcceleratedSurfacePostSubBuffer( | 132 virtual void AcceleratedSurfacePostSubBuffer( |
133 const GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params& params, | 133 const GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params& params, |
134 int gpu_host_id) OVERRIDE; | 134 int gpu_host_id) OVERRIDE; |
135 virtual void AcceleratedSurfaceSuspend() OVERRIDE; | 135 virtual void AcceleratedSurfaceSuspend() OVERRIDE; |
136 virtual void AcceleratedSurfaceRelease() OVERRIDE {} | 136 virtual void AcceleratedSurfaceRelease() OVERRIDE {} |
137 virtual bool HasAcceleratedSurface(const gfx::Size& desired_size) OVERRIDE; | 137 virtual bool HasAcceleratedSurface(const gfx::Size& desired_size) OVERRIDE; |
138 #if defined(OS_MACOSX) | 138 #if defined(OS_MACOSX) |
139 virtual bool PostProcessEventForPluginIme( | 139 virtual bool PostProcessEventForPluginIme( |
140 const NativeWebKeyboardEvent& event) OVERRIDE; | 140 const NativeWebKeyboardEvent& event) OVERRIDE; |
141 #elif defined(OS_ANDROID) | 141 #endif |
142 #if defined(OS_ANDROID) || defined(OS_WIN) | |
sky
2014/08/04 20:05:20
OS_WIN->TOOLKIT_VIEWS
luken
2014/09/11 01:07:28
Done.
| |
142 virtual void ShowDisambiguationPopup( | 143 virtual void ShowDisambiguationPopup( |
143 const gfx::Rect& target_rect, | 144 const gfx::Rect& target_rect, |
144 const SkBitmap& zoomed_bitmap) OVERRIDE {} | 145 const SkBitmap& zoomed_bitmap) OVERRIDE {} |
146 #endif | |
147 #if defined(OS_ANDROID) | |
145 virtual void LockCompositingSurface() OVERRIDE {} | 148 virtual void LockCompositingSurface() OVERRIDE {} |
146 virtual void UnlockCompositingSurface() OVERRIDE {} | 149 virtual void UnlockCompositingSurface() OVERRIDE {} |
147 #endif | 150 #endif |
148 virtual void GetScreenInfo(blink::WebScreenInfo* results) OVERRIDE {} | 151 virtual void GetScreenInfo(blink::WebScreenInfo* results) OVERRIDE {} |
149 virtual gfx::Rect GetBoundsInRootWindow() OVERRIDE; | 152 virtual gfx::Rect GetBoundsInRootWindow() OVERRIDE; |
150 virtual gfx::GLSurfaceHandle GetCompositingSurface() OVERRIDE; | 153 virtual gfx::GLSurfaceHandle GetCompositingSurface() OVERRIDE; |
151 virtual bool LockMouse() OVERRIDE; | 154 virtual bool LockMouse() OVERRIDE; |
152 virtual void UnlockMouse() OVERRIDE; | 155 virtual void UnlockMouse() OVERRIDE; |
153 #if defined(OS_WIN) | 156 #if defined(OS_WIN) |
154 virtual void SetParentNativeViewAccessible( | 157 virtual void SetParentNativeViewAccessible( |
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
373 private: | 376 private: |
374 typedef scoped_ptr<ui::test::ScopedSetSupportedScaleFactors> | 377 typedef scoped_ptr<ui::test::ScopedSetSupportedScaleFactors> |
375 ScopedSetSupportedScaleFactors; | 378 ScopedSetSupportedScaleFactors; |
376 ScopedSetSupportedScaleFactors scoped_set_supported_scale_factors_; | 379 ScopedSetSupportedScaleFactors scoped_set_supported_scale_factors_; |
377 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImplTestHarness); | 380 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImplTestHarness); |
378 }; | 381 }; |
379 | 382 |
380 } // namespace content | 383 } // namespace content |
381 | 384 |
382 #endif // CONTENT_TEST_TEST_RENDER_VIEW_HOST_H_ | 385 #endif // CONTENT_TEST_TEST_RENDER_VIEW_HOST_H_ |
OLD | NEW |