| Index: content/browser/android/content_view_core_impl.cc
|
| diff --git a/content/browser/android/content_view_core_impl.cc b/content/browser/android/content_view_core_impl.cc
|
| index 204145c773647024dade3629fe31daaf9bc4fbd1..293b2636d6b5c524be6a94c98d7b2ee3954283f5 100644
|
| --- a/content/browser/android/content_view_core_impl.cc
|
| +++ b/content/browser/android/content_view_core_impl.cc
|
| @@ -158,7 +158,6 @@ ContentViewCoreImpl::ContentViewCoreImpl(JNIEnv* env, jobject obj,
|
| root_layer_(cc::Layer::Create()),
|
| tab_crashed_(false),
|
| input_events_delivered_at_vsync_(input_events_delivered_at_vsync),
|
| - renderer_frame_pending_(false),
|
| window_android_(window_android) {
|
| CHECK(web_contents) <<
|
| "A ContentViewCoreImpl should be created with a valid WebContents.";
|
| @@ -667,10 +666,6 @@ void ContentViewCoreImpl::RemoveLayer(scoped_refptr<cc::Layer> layer) {
|
| layer->RemoveFromParent();
|
| }
|
|
|
| -void ContentViewCoreImpl::DidProduceRendererFrame() {
|
| - renderer_frame_pending_ = true;
|
| -}
|
| -
|
| void ContentViewCoreImpl::LoadUrl(
|
| NavigationController::LoadURLParams& params) {
|
| GetWebContents()->GetController().LoadURLWithParams(params);
|
| @@ -1212,13 +1207,6 @@ jboolean ContentViewCoreImpl::IsShowingInterstitialPage(JNIEnv* env,
|
| return web_contents_->ShowingInterstitialPage();
|
| }
|
|
|
| -jboolean ContentViewCoreImpl::ConsumePendingRendererFrame(JNIEnv* env,
|
| - jobject obj) {
|
| - bool had_pending_frame = renderer_frame_pending_;
|
| - renderer_frame_pending_ = false;
|
| - return had_pending_frame;
|
| -}
|
| -
|
| void ContentViewCoreImpl::AttachExternalVideoSurface(JNIEnv* env,
|
| jobject obj,
|
| jint player_id,
|
|
|