| Index: android_webview/java/src/org/chromium/android_webview/AwContents.java
|
| diff --git a/android_webview/java/src/org/chromium/android_webview/AwContents.java b/android_webview/java/src/org/chromium/android_webview/AwContents.java
|
| index 7e906cf1f8c504b07ef0205de64cee954a08bbdd..a524adaf10c799803624dd49f98935dd53dea4fa 100644
|
| --- a/android_webview/java/src/org/chromium/android_webview/AwContents.java
|
| +++ b/android_webview/java/src/org/chromium/android_webview/AwContents.java
|
| @@ -215,6 +215,14 @@ public class AwContents implements SmartClipProvider,
|
| * Detaches the GLFunctor from the view tree.
|
| */
|
| void detach(View containerView);
|
| +
|
| + /**
|
| + * Get a Runnable that is used to destroy the native portion of the functor. After the
|
| + * run method of this Runnable is called, no other methods should be called on the Java
|
| + * object.
|
| + */
|
| + Runnable getDestroyRunnable();
|
| +
|
| }
|
|
|
| /**
|
|
|