| Index: content/browser/web_contents/web_contents_impl.cc | 
| diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_contents_impl.cc | 
| index 10f7b9df467216a430ee08d69f3ddb5bccec329c..1ecc7788bee3aa66bb5514845350f1ab5db4fa26 100644 | 
| --- a/content/browser/web_contents/web_contents_impl.cc | 
| +++ b/content/browser/web_contents/web_contents_impl.cc | 
| @@ -354,7 +354,6 @@ WebContentsImpl::WebContentsImpl( | 
| waiting_for_response_(false), | 
| load_state_(net::LOAD_STATE_IDLE, base::string16()), | 
| loading_total_progress_(0.0), | 
| -      loading_weak_factory_(this), | 
| loading_frames_in_progress_(0), | 
| upload_size_(0), | 
| upload_position_(0), | 
| @@ -380,7 +379,8 @@ WebContentsImpl::WebContentsImpl( | 
| last_dialog_suppressed_(false), | 
| accessibility_mode_( | 
| BrowserAccessibilityStateImpl::GetInstance()->accessibility_mode()), | 
| -      audio_stream_monitor_(this) { | 
| +      audio_stream_monitor_(this), | 
| +      loading_weak_factory_(this) { | 
| for (size_t i = 0; i < g_created_callbacks.Get().size(); i++) | 
| g_created_callbacks.Get().at(i).Run(this); | 
| frame_tree_.SetFrameRemoveListener( | 
|  |