| Index: android_webview/native/aw_contents.cc
|
| diff --git a/android_webview/native/aw_contents.cc b/android_webview/native/aw_contents.cc
|
| index ccb0c521307edb8e797dddd70f40a15e8dd433b1..bdf3f03b12beb5f9ae9df3044aa534fd8f871b26 100644
|
| --- a/android_webview/native/aw_contents.cc
|
| +++ b/android_webview/native/aw_contents.cc
|
| @@ -736,11 +736,13 @@ void AwContents::SetWindowVisibility(JNIEnv* env, jobject obj, bool visible) {
|
| void AwContents::SetIsPaused(JNIEnv* env, jobject obj, bool paused) {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| browser_view_renderer_->SetIsPaused(paused);
|
| - if (paused) {
|
| - ContentViewCore* cvc =
|
| - ContentViewCore::FromWebContents(web_contents_.get());
|
| - if (cvc)
|
| + ContentViewCore* cvc =
|
| + ContentViewCore::FromWebContents(web_contents_.get());
|
| + if (cvc) {
|
| + cvc->PauseOrResumeGeolocation(paused);
|
| + if (paused) {
|
| cvc->PauseVideo();
|
| + }
|
| }
|
| }
|
|
|
|
|