Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(486)

Side by Side Diff: content/browser/frame_host/render_widget_host_view_child_frame.cc

Issue 616133002: Make RenderFrame(Host) own a RenderWidget(Host). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Re-applying same patch Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/frame_host/render_widget_host_view_child_frame.h" 5 #include "content/browser/frame_host/render_widget_host_view_child_frame.h"
6 6
7 #include "content/browser/accessibility/browser_accessibility_manager.h" 7 #include "content/browser/accessibility/browser_accessibility_manager.h"
8 #include "content/browser/frame_host/cross_process_frame_connector.h" 8 #include "content/browser/frame_host/cross_process_frame_connector.h"
9 #include "content/browser/renderer_host/render_widget_host_impl.h" 9 #include "content/browser/renderer_host/render_widget_host_impl.h"
10 #include "content/common/gpu/gpu_messages.h" 10 #include "content/common/gpu/gpu_messages.h"
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 138
139 void RenderWidgetHostViewChildFrame::SetIsLoading(bool is_loading) { 139 void RenderWidgetHostViewChildFrame::SetIsLoading(bool is_loading) {
140 NOTREACHED(); 140 NOTREACHED();
141 } 141 }
142 142
143 void RenderWidgetHostViewChildFrame::TextInputTypeChanged( 143 void RenderWidgetHostViewChildFrame::TextInputTypeChanged(
144 ui::TextInputType type, 144 ui::TextInputType type,
145 ui::TextInputMode input_mode, 145 ui::TextInputMode input_mode,
146 bool can_compose_inline, 146 bool can_compose_inline,
147 int flags) { 147 int flags) {
148 NOTREACHED(); 148 // TODO(kenrb): Implement.
149 } 149 }
150 150
151 void RenderWidgetHostViewChildFrame::RenderProcessGone( 151 void RenderWidgetHostViewChildFrame::RenderProcessGone(
152 base::TerminationStatus status, 152 base::TerminationStatus status,
153 int error_code) { 153 int error_code) {
154 if (frame_connector_) 154 if (frame_connector_)
155 frame_connector_->RenderProcessGone(); 155 frame_connector_->RenderProcessGone();
156 Destroy(); 156 Destroy();
157 } 157 }
158 158
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 } 303 }
304 304
305 BrowserAccessibilityManager* 305 BrowserAccessibilityManager*
306 RenderWidgetHostViewChildFrame::CreateBrowserAccessibilityManager( 306 RenderWidgetHostViewChildFrame::CreateBrowserAccessibilityManager(
307 BrowserAccessibilityDelegate* delegate) { 307 BrowserAccessibilityDelegate* delegate) {
308 return BrowserAccessibilityManager::Create( 308 return BrowserAccessibilityManager::Create(
309 BrowserAccessibilityManager::GetEmptyDocument(), delegate); 309 BrowserAccessibilityManager::GetEmptyDocument(), delegate);
310 } 310 }
311 311
312 } // namespace content 312 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698