OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/browser/renderer_host/render_view_host_impl.h" | 5 #include "content/browser/renderer_host/render_view_host_impl.h" |
6 | 6 |
7 #include <set> | 7 #include <set> |
8 #include <string> | 8 #include <string> |
9 #include <utility> | 9 #include <utility> |
10 #include <vector> | 10 #include <vector> |
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 : RenderWidgetHostImpl(widget_delegate, | 217 : RenderWidgetHostImpl(widget_delegate, |
218 instance->GetProcess(), | 218 instance->GetProcess(), |
219 routing_id, | 219 routing_id, |
220 hidden), | 220 hidden), |
221 frames_ref_count_(0), | 221 frames_ref_count_(0), |
222 delegate_(delegate), | 222 delegate_(delegate), |
223 instance_(static_cast<SiteInstanceImpl*>(instance)), | 223 instance_(static_cast<SiteInstanceImpl*>(instance)), |
224 waiting_for_drag_context_response_(false), | 224 waiting_for_drag_context_response_(false), |
225 enabled_bindings_(0), | 225 enabled_bindings_(0), |
226 page_id_(-1), | 226 page_id_(-1), |
227 nav_entry_id_(0), | |
228 is_active_(!swapped_out), | 227 is_active_(!swapped_out), |
229 is_pending_deletion_(false), | 228 is_pending_deletion_(false), |
230 is_swapped_out_(swapped_out), | 229 is_swapped_out_(swapped_out), |
231 main_frame_routing_id_(main_frame_routing_id), | 230 main_frame_routing_id_(main_frame_routing_id), |
232 is_waiting_for_close_ack_(false), | 231 is_waiting_for_close_ack_(false), |
233 sudden_termination_allowed_(false), | 232 sudden_termination_allowed_(false), |
234 render_view_termination_status_(base::TERMINATION_STATUS_STILL_RUNNING), | 233 render_view_termination_status_(base::TERMINATION_STATUS_STILL_RUNNING), |
235 virtual_keyboard_requested_(false), | 234 virtual_keyboard_requested_(false), |
236 is_focused_element_editable_(false), | 235 is_focused_element_editable_(false), |
237 updating_web_preferences_(false), | 236 updating_web_preferences_(false), |
(...skipping 1234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1472 } else { | 1471 } else { |
1473 render_view_ready_on_process_launch_ = true; | 1472 render_view_ready_on_process_launch_ = true; |
1474 } | 1473 } |
1475 } | 1474 } |
1476 | 1475 |
1477 void RenderViewHostImpl::RenderViewReady() { | 1476 void RenderViewHostImpl::RenderViewReady() { |
1478 delegate_->RenderViewReady(this); | 1477 delegate_->RenderViewReady(this); |
1479 } | 1478 } |
1480 | 1479 |
1481 } // namespace content | 1480 } // namespace content |
OLD | NEW |