diff options
Diffstat (limited to 'WebKit/android/WebCoreSupport')
| -rw-r--r-- | WebKit/android/WebCoreSupport/PlatformBridge.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/WebKit/android/WebCoreSupport/PlatformBridge.cpp b/WebKit/android/WebCoreSupport/PlatformBridge.cpp index b91a5d8..c04600d 100644 --- a/WebKit/android/WebCoreSupport/PlatformBridge.cpp +++ b/WebKit/android/WebCoreSupport/PlatformBridge.cpp @@ -113,9 +113,10 @@ NPObject* PlatformBridge::pluginScriptableObject(Widget* widget) #endif } -bool PlatformBridge::isWebViewPaused() +bool PlatformBridge::isWebViewPaused(const WebCore::FrameView* frameView) { - return WebViewCore::isPaused(); + android::WebViewCore* webViewCore = android::WebViewCore::getWebViewCore(frameView); + return webViewCore->isPaused(); } bool PlatformBridge::popupsAllowed(NPP) |
