| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 ANDROID_WEBVIEW_NATIVE_JAVA_BROWSER_VIEW_RENDERER_HELPER_H_ | 5 #ifndef ANDROID_WEBVIEW_NATIVE_JAVA_BROWSER_VIEW_RENDERER_HELPER_H_ |
| 6 #define ANDROID_WEBVIEW_NATIVE_JAVA_BROWSER_VIEW_RENDERER_HELPER_H_ | 6 #define ANDROID_WEBVIEW_NATIVE_JAVA_BROWSER_VIEW_RENDERER_HELPER_H_ |
| 7 | 7 |
| 8 #include <jni.h> | 8 #include <jni.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 | 11 |
| 12 #include "skia/ext/refptr.h" | |
| 13 #include "ui/gfx/geometry/size.h" | 12 #include "ui/gfx/geometry/size.h" |
| 14 #include "ui/gfx/geometry/vector2d.h" | 13 #include "ui/gfx/geometry/vector2d.h" |
| 15 | 14 |
| 16 class SkCanvas; | 15 class SkCanvas; |
| 17 struct AwDrawSWFunctionTable; | 16 struct AwDrawSWFunctionTable; |
| 18 | 17 |
| 19 namespace android_webview { | 18 namespace android_webview { |
| 20 | 19 |
| 21 class SoftwareCanvasHolder { | 20 class SoftwareCanvasHolder { |
| 22 public: | 21 public: |
| 23 static std::unique_ptr<SoftwareCanvasHolder> Create( | 22 static std::unique_ptr<SoftwareCanvasHolder> Create( |
| 24 jobject java_canvas, | 23 jobject java_canvas, |
| 25 const gfx::Vector2d& scroll_correction, | 24 const gfx::Vector2d& scroll_correction, |
| 26 const gfx::Size& auxiliary_bitmap_size, | 25 const gfx::Size& auxiliary_bitmap_size, |
| 27 bool force_auxiliary_bitmap); | 26 bool force_auxiliary_bitmap); |
| 28 | 27 |
| 29 virtual ~SoftwareCanvasHolder() {} | 28 virtual ~SoftwareCanvasHolder() {} |
| 30 | 29 |
| 31 // The returned SkCanvas is still owned by this holder. | 30 // The returned SkCanvas is still owned by this holder. |
| 32 virtual SkCanvas* GetCanvas() = 0; | 31 virtual SkCanvas* GetCanvas() = 0; |
| 33 }; | 32 }; |
| 34 | 33 |
| 35 void RasterHelperSetAwDrawSWFunctionTable(AwDrawSWFunctionTable* table); | 34 void RasterHelperSetAwDrawSWFunctionTable(AwDrawSWFunctionTable* table); |
| 36 | 35 |
| 37 bool RegisterJavaBrowserViewRendererHelper(JNIEnv* env); | 36 bool RegisterJavaBrowserViewRendererHelper(JNIEnv* env); |
| 38 | 37 |
| 39 } // namespace android_webview | 38 } // namespace android_webview |
| 40 | 39 |
| 41 #endif // ANDROID_WEBVIEW_NATIVE_JAVA_BROWSER_VIEW_RENDERER_HELPER_H_ | 40 #endif // ANDROID_WEBVIEW_NATIVE_JAVA_BROWSER_VIEW_RENDERER_HELPER_H_ |
| OLD | NEW |