| Index: content/public/android/java/src/org/chromium/content/browser/webcontents/WebContentsImpl.java
|
| diff --git a/content/public/android/java/src/org/chromium/content/browser/webcontents/WebContentsImpl.java b/content/public/android/java/src/org/chromium/content/browser/webcontents/WebContentsImpl.java
|
| index 049e5af8d0ea21e9ed7813af43f522d757c165e0..fc26b99ba1fa4fb79efd88ef9ea4e5a6945f8dc3 100644
|
| --- a/content/public/android/java/src/org/chromium/content/browser/webcontents/WebContentsImpl.java
|
| +++ b/content/public/android/java/src/org/chromium/content/browser/webcontents/WebContentsImpl.java
|
| @@ -312,6 +312,11 @@ import org.chromium.content_public.browser.WebContents;
|
| callback.handleJavaScriptResult(jsonResult);
|
| }
|
|
|
| + @Override
|
| + public int getThemeColor() {
|
| + return nativeGetThemeColor(mNativeWebContentsAndroid);
|
| + }
|
| +
|
| // This is static to avoid exposing a public destroy method on the native side of this class.
|
| private static native void nativeDestroyWebContents(long webContentsAndroidPtr);
|
|
|
| @@ -339,6 +344,7 @@ import org.chromium.content_public.browser.WebContents;
|
| private native void nativeSelectWordAroundCaret(long nativeWebContentsAndroid);
|
| private native String nativeGetURL(long nativeWebContentsAndroid);
|
| private native String nativeGetLastCommittedURL(long nativeWebContentsAndroid);
|
| + private native int nativeGetThemeColor(long nativeWebContentsAndroid);
|
| private native boolean nativeIsIncognito(long nativeWebContentsAndroid);
|
| private native void nativeResumeResponseDeferredAtStart(long nativeWebContentsAndroid);
|
| private native void nativeSetHasPendingNavigationTransitionForTesting(
|
|
|