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 b5d4e8d1401a0a02ae48d4ce2023c26bdab30cb9..bbf71012109650a0d0bbe4d76e7f079c8b53e201 100644 |
--- a/android_webview/java/src/org/chromium/android_webview/AwContents.java |
+++ b/android_webview/java/src/org/chromium/android_webview/AwContents.java |
@@ -1,4 +1,4 @@ |
-// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
+// Copyright 2012 The Chromium Authors. All rights reserved. |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
@@ -348,6 +348,10 @@ public class AwContents { |
nativeSetAwDrawSWFunctionTable(functionTablePointer); |
} |
+ public static void setAwDrawGLFunctionTable(int functionTablePointer) { |
+ nativeSetAwDrawGLFunctionTable(functionTablePointer); |
+ } |
+ |
public static int getAwDrawGLFunction() { |
return nativeGetAwDrawGLFunction(); |
} |
@@ -1304,6 +1308,7 @@ public class AwContents { |
AwContentsClientBridge contentsClientBridge); |
private static native void nativeDestroy(int nativeAwContents); |
private static native void nativeSetAwDrawSWFunctionTable(int functionTablePointer); |
+ private static native void nativeSetAwDrawGLFunctionTable(int functionTablePointer); |
private static native int nativeGetAwDrawGLFunction(); |
private native int nativeGetWebContents(int nativeAwContents); |