Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 package org.chromium.content.browser; | 5 package org.chromium.content.browser; |
| 6 | 6 |
| 7 import android.graphics.Bitmap; | 7 import android.graphics.Bitmap; |
| 8 import android.graphics.Rect; | 8 import android.graphics.Rect; |
| 9 import android.util.SparseArray; | 9 import android.util.SparseArray; |
| 10 | 10 |
| 11 import org.chromium.base.CalledByNative; | 11 import org.chromium.base.CalledByNative; |
| 12 import org.chromium.base.JNINamespace; | 12 import org.chromium.base.JNINamespace; |
| 13 import org.chromium.base.ThreadUtils; | 13 import org.chromium.base.ThreadUtils; |
| 14 import org.chromium.ui.base.WindowAndroid; | 14 import org.chromium.ui.base.WindowAndroid; |
| 15 | 15 |
| 16 /** | 16 /** |
| 17 * A class for reading back content. | 17 * A class for reading back content. |
| 18 */ | 18 */ |
| 19 @JNINamespace("content") | 19 @JNINamespace("content") |
| 20 public abstract class ContentReadbackHandler { | 20 public abstract class ContentReadbackHandler { |
| 21 /** | 21 /** |
| 22 * A callback interface for content readback into a bitmap. | 22 * A callback interface for content readback into a bitmap. |
| 23 */ | 23 */ |
| 24 public static interface GetBitmapCallback { | 24 public static interface GetBitmapCallback { |
| 25 /** | 25 /** |
| 26 * Called when the content readback finishes. | 26 * Called when the content readback finishes. |
| 27 * @param bitmap The {@link Bitmap} of the content. Null will be pa ssed for readback | 27 * @param bitmap The {@link Bitmap} of the content. Null will be pa ssed for readback |
| 28 * failure. | 28 * failure. |
|
AKV
2015/04/01 14:49:24
Please update doxygn description corresponds to ne
| |
| 29 */ | 29 */ |
| 30 public void onFinishGetBitmap(Bitmap bitmap); | 30 public void onFinishGetBitmap(Bitmap bitmap, int response); |
| 31 } | 31 } |
| 32 | 32 |
| 33 private int mNextReadbackId = 1; | 33 private int mNextReadbackId = 1; |
| 34 private SparseArray<GetBitmapCallback> mGetBitmapRequests; | 34 private SparseArray<GetBitmapCallback> mGetBitmapRequests; |
| 35 | 35 |
| 36 private long mNativeContentReadbackHandler; | 36 private long mNativeContentReadbackHandler; |
| 37 | 37 |
| 38 /** | 38 /** |
| 39 * Creates a {@link ContentReadbackHandler}. | 39 * Creates a {@link ContentReadbackHandler}. |
| 40 */ | 40 */ |
| (...skipping 11 matching lines...) Expand all Loading... | |
| 52 /** | 52 /** |
| 53 * Should be called when the ContentReadackHandler is not needed anymore. | 53 * Should be called when the ContentReadackHandler is not needed anymore. |
| 54 */ | 54 */ |
| 55 public void destroy() { | 55 public void destroy() { |
| 56 if (mNativeContentReadbackHandler != 0) nativeDestroy(mNativeContentRead backHandler); | 56 if (mNativeContentReadbackHandler != 0) nativeDestroy(mNativeContentRead backHandler); |
| 57 mNativeContentReadbackHandler = 0; | 57 mNativeContentReadbackHandler = 0; |
| 58 } | 58 } |
| 59 | 59 |
| 60 | 60 |
| 61 @CalledByNative | 61 @CalledByNative |
| 62 private void notifyGetBitmapFinished(int readbackId, Bitmap bitmap) { | 62 private void notifyGetBitmapFinished(int readbackId, Bitmap bitmap, int resp onse) { |
| 63 GetBitmapCallback callback = mGetBitmapRequests.get(readbackId); | 63 GetBitmapCallback callback = mGetBitmapRequests.get(readbackId); |
| 64 if (callback != null) { | 64 if (callback != null) { |
| 65 mGetBitmapRequests.delete(readbackId); | 65 mGetBitmapRequests.delete(readbackId); |
| 66 callback.onFinishGetBitmap(bitmap); | 66 callback.onFinishGetBitmap(bitmap, response); |
|
AKV
2015/04/01 14:49:24
You may have to incorporate same changes in Conten
| |
| 67 } else { | 67 } else { |
| 68 // readback Id is unregistered. | 68 // readback Id is unregistered. |
| 69 assert false : "Readback finished for unregistered Id: " + readbackI d; | 69 assert false : "Readback finished for unregistered Id: " + readbackI d; |
| 70 } | 70 } |
| 71 } | 71 } |
| 72 | 72 |
| 73 /** | 73 /** |
| 74 * Asynchronously, generate and grab a bitmap representing what is currently on the screen | 74 * Asynchronously, generate and grab a bitmap representing what is currently on the screen |
| 75 * for {@code view}. | 75 * for {@code view}. |
| 76 * | 76 * |
| 77 * @param scale The scale that should be applied to the content. | 77 * @param scale The scale that should be applied to the content. |
| 78 * @param srcRect A subrect of the original content to capture. If this is empty, it will grab | 78 * @param srcRect A subrect of the original content to capture. If this is empty, it will grab |
| 79 * the whole surface. | 79 * the whole surface. |
| 80 * @param view The {@link ContentViewCore} to grab the bitmap from. | 80 * @param view The {@link ContentViewCore} to grab the bitmap from. |
| 81 * @param callback The callback to be executed after readback completes. | 81 * @param callback The callback to be executed after readback completes. |
| 82 */ | 82 */ |
| 83 public void getContentBitmapAsync(float scale, Rect srcRect, ContentViewCore view, | 83 public void getContentBitmapAsync(float scale, Rect srcRect, ContentViewCore view, |
| 84 GetBitmapCallback callback) { | 84 GetBitmapCallback callback) { |
| 85 if (!readyForReadback()) { | 85 if (!readyForReadback()) { |
| 86 callback.onFinishGetBitmap(null); | 86 callback.onFinishGetBitmap(null, ReadbackResponse.READBACK_SURFACE_U NAVAILABLE); |
| 87 return; | 87 return; |
| 88 } | 88 } |
| 89 ThreadUtils.assertOnUiThread(); | 89 ThreadUtils.assertOnUiThread(); |
| 90 | 90 |
| 91 int readbackId = mNextReadbackId++; | 91 int readbackId = mNextReadbackId++; |
| 92 mGetBitmapRequests.put(readbackId, callback); | 92 mGetBitmapRequests.put(readbackId, callback); |
| 93 nativeGetContentBitmap(mNativeContentReadbackHandler, readbackId, scale, | 93 nativeGetContentBitmap(mNativeContentReadbackHandler, readbackId, scale, |
| 94 Bitmap.Config.ARGB_8888, srcRect.top, srcRect.left, srcRect.widt h(), | 94 Bitmap.Config.ARGB_8888, srcRect.top, srcRect.left, srcRect.widt h(), |
| 95 srcRect.height(), view); | 95 srcRect.height(), view); |
| 96 } | 96 } |
| 97 | 97 |
| 98 /** | 98 /** |
| 99 * Asynchronously, grab a bitmap of the current browser compositor root laye r. | 99 * Asynchronously, grab a bitmap of the current browser compositor root laye r. |
| 100 * | 100 * |
| 101 * @param windowAndroid The window that hosts the compositor. | 101 * @param windowAndroid The window that hosts the compositor. |
| 102 * @param callback The callback to be executed after readback completes . | 102 * @param callback The callback to be executed after readback completes . |
| 103 */ | 103 */ |
| 104 public void getCompositorBitmapAsync(WindowAndroid windowAndroid, GetBitmapC allback callback) { | 104 public void getCompositorBitmapAsync(WindowAndroid windowAndroid, GetBitmapC allback callback) { |
| 105 if (!readyForReadback()) { | 105 if (!readyForReadback()) { |
| 106 callback.onFinishGetBitmap(null); | 106 callback.onFinishGetBitmap(null, ReadbackResponse.READBACK_SURFACE_U NAVAILABLE); |
| 107 return; | 107 return; |
| 108 } | 108 } |
| 109 ThreadUtils.assertOnUiThread(); | 109 ThreadUtils.assertOnUiThread(); |
| 110 | 110 |
| 111 int readbackId = mNextReadbackId++; | 111 int readbackId = mNextReadbackId++; |
| 112 mGetBitmapRequests.put(readbackId, callback); | 112 mGetBitmapRequests.put(readbackId, callback); |
| 113 nativeGetCompositorBitmap(mNativeContentReadbackHandler, readbackId, | 113 nativeGetCompositorBitmap(mNativeContentReadbackHandler, readbackId, |
| 114 windowAndroid.getNativePointer()); | 114 windowAndroid.getNativePointer()); |
| 115 } | 115 } |
| 116 | 116 |
| 117 /** | 117 /** |
| 118 * Implemented by the owner of this class to signal whether readback is poss ible or not. | 118 * Implemented by the owner of this class to signal whether readback is poss ible or not. |
| 119 * @return Whether readback is possible or not. | 119 * @return Whether readback is possible or not. |
| 120 */ | 120 */ |
| 121 protected abstract boolean readyForReadback(); | 121 protected abstract boolean readyForReadback(); |
| 122 | 122 |
| 123 private native long nativeInit(); | 123 private native long nativeInit(); |
| 124 private native void nativeDestroy(long nativeContentReadbackHandler); | 124 private native void nativeDestroy(long nativeContentReadbackHandler); |
| 125 private native void nativeGetContentBitmap(long nativeContentReadbackHandler , int readbackId, | 125 private native void nativeGetContentBitmap(long nativeContentReadbackHandler , int readbackId, |
| 126 float scale, Bitmap.Config config, float x, float y, float width, fl oat height, | 126 float scale, Bitmap.Config config, float x, float y, float width, fl oat height, |
| 127 Object contentViewCore); | 127 Object contentViewCore); |
| 128 private native void nativeGetCompositorBitmap(long nativeContentReadbackHand ler, | 128 private native void nativeGetCompositorBitmap(long nativeContentReadbackHand ler, |
| 129 int readbackId, long nativeWindowAndroid); | 129 int readbackId, long nativeWindowAndroid); |
| 130 } | 130 } |
| OLD | NEW |