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

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

Issue 972313002: Make <webview> use out-of-process iframe architecture. (Closed) Base URL: ssh://saopaulo.wat/mnt/dev/shared/src@testoopif2z-better-chrome
Patch Set: Make <webview> work without --site-per-process as well Created 5 years, 7 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 NOTREACHED(); 116 NOTREACHED();
117 } 117 }
118 118
119 void RenderWidgetHostViewChildFrame::ImeCancelComposition() { 119 void RenderWidgetHostViewChildFrame::ImeCancelComposition() {
120 NOTREACHED(); 120 NOTREACHED();
121 } 121 }
122 122
123 void RenderWidgetHostViewChildFrame::ImeCompositionRangeChanged( 123 void RenderWidgetHostViewChildFrame::ImeCompositionRangeChanged(
124 const gfx::Range& range, 124 const gfx::Range& range,
125 const std::vector<gfx::Rect>& character_bounds) { 125 const std::vector<gfx::Rect>& character_bounds) {
126 NOTREACHED(); 126 // NOTREACHED();
Charlie Reis 2015/04/30 23:06:46 What do we need to do to resolve this?
127 } 127 }
128 128
129 void RenderWidgetHostViewChildFrame::MovePluginWindows( 129 void RenderWidgetHostViewChildFrame::MovePluginWindows(
130 const std::vector<WebPluginGeometry>& moves) { 130 const std::vector<WebPluginGeometry>& moves) {
131 } 131 }
132 132
133 void RenderWidgetHostViewChildFrame::Blur() { 133 void RenderWidgetHostViewChildFrame::Blur() {
134 } 134 }
135 135
136 void RenderWidgetHostViewChildFrame::UpdateCursor(const WebCursor& cursor) { 136 void RenderWidgetHostViewChildFrame::UpdateCursor(const WebCursor& cursor) {
137 } 137 }
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 // TODO(kenrb): Implement. 148 // TODO(kenrb): Implement.
149 } 149 }
150 150
(...skipping 152 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