OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |