Chromium Code Reviews| 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_ANDROID_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <queue> | 9 #include <queue> |
| 10 | 10 |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 210 void SendMouseWheelEvent(const blink::WebMouseWheelEvent& event); | 210 void SendMouseWheelEvent(const blink::WebMouseWheelEvent& event); |
| 211 void SendGestureEvent(const blink::WebGestureEvent& event); | 211 void SendGestureEvent(const blink::WebGestureEvent& event); |
| 212 void SendBeginFrame(const cc::BeginFrameArgs& args); | 212 void SendBeginFrame(const cc::BeginFrameArgs& args); |
| 213 | 213 |
| 214 void OnTextInputStateChanged(const ViewHostMsg_TextInputState_Params& params); | 214 void OnTextInputStateChanged(const ViewHostMsg_TextInputState_Params& params); |
| 215 void OnDidChangeBodyBackgroundColor(SkColor color); | 215 void OnDidChangeBodyBackgroundColor(SkColor color); |
| 216 void OnStartContentIntent(const GURL& content_url); | 216 void OnStartContentIntent(const GURL& content_url); |
| 217 void OnSetNeedsBeginFrame(bool enabled); | 217 void OnSetNeedsBeginFrame(bool enabled); |
| 218 void OnSmartClipDataExtracted(const base::string16& result); | 218 void OnSmartClipDataExtracted(const base::string16& result); |
| 219 | 219 |
| 220 void LockResources(); | 220 virtual void LockSurfaceForCopy() OVERRIDE; |
|
jam
2014/02/26 22:57:52
these should be put in the right section
powei
2014/03/03 09:20:54
Done.
| |
| 221 void UnlockResources(); | 221 virtual void UnlockSurfaceForCopy() OVERRIDE; |
| 222 | 222 |
| 223 int GetNativeImeAdapter(); | 223 int GetNativeImeAdapter(); |
| 224 | 224 |
| 225 void WasResized(); | 225 void WasResized(); |
| 226 | 226 |
| 227 void GetScaledContentBitmap( | 227 void GetScaledContentBitmap( |
| 228 float scale, | 228 float scale, |
| 229 SkBitmap::Config bitmap_config, | 229 SkBitmap::Config bitmap_config, |
| 230 const base::Callback<void(bool, const SkBitmap&)>& result_callback); | 230 const base::Callback<void(bool, const SkBitmap&)>& result_callback); |
| 231 bool PopulateBitmapWithContents(jobject jbitmap); | 231 bool PopulateBitmapWithContents(jobject jbitmap); |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 356 scoped_ptr<DelegatedFrameEvictor> frame_evictor_; | 356 scoped_ptr<DelegatedFrameEvictor> frame_evictor_; |
| 357 | 357 |
| 358 bool using_delegated_renderer_; | 358 bool using_delegated_renderer_; |
| 359 | 359 |
| 360 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 360 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); |
| 361 }; | 361 }; |
| 362 | 362 |
| 363 } // namespace content | 363 } // namespace content |
| 364 | 364 |
| 365 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 365 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
| OLD | NEW |