diff options
Diffstat (limited to 'WebKit/android/WebCoreSupport/PlatformBridge.cpp')
-rw-r--r-- | WebKit/android/WebCoreSupport/PlatformBridge.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/WebKit/android/WebCoreSupport/PlatformBridge.cpp b/WebKit/android/WebCoreSupport/PlatformBridge.cpp index cd5e2e6..f36ecf7 100644 --- a/WebKit/android/WebCoreSupport/PlatformBridge.cpp +++ b/WebKit/android/WebCoreSupport/PlatformBridge.cpp @@ -98,6 +98,11 @@ bool PlatformBridge::cookiesEnabled() return client->cookiesEnabled(); } +bool PlatformBridge::isWebViewPaused() +{ + return WebViewCore::isPaused(); +} + } // namespace WebCore |