Supervised user whitelists: Cleanup
[chromium-blink-merge.git] / android_webview / glue / java / src / com / android / webview / chromium / GraphicsUtils.java
blob64ff225d1fd697e0c308807df87a4b92f030b3a9
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
3 // found in the LICENSE file.
5 package com.android.webview.chromium;
7 abstract class GraphicsUtils {
8 public static long getDrawSWFunctionTable() {
9 return nativeGetDrawSWFunctionTable();
12 public static long getDrawGLFunctionTable() {
13 return nativeGetDrawGLFunctionTable();
16 private static native long nativeGetDrawSWFunctionTable();
17 private static native long nativeGetDrawGLFunctionTable();