| 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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(); |
| 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::UpdateCursor(const WebCursor& cursor) { | 133 void RenderWidgetHostViewChildFrame::UpdateCursor(const WebCursor& cursor) { |
| 134 } | 134 } |
| 135 | 135 |
| 136 void RenderWidgetHostViewChildFrame::SetIsLoading(bool is_loading) { | 136 void RenderWidgetHostViewChildFrame::SetIsLoading(bool is_loading) { |
| 137 NOTREACHED(); | 137 // NOTREACHED(); |
| 138 } | 138 } |
| 139 | 139 |
| 140 void RenderWidgetHostViewChildFrame::TextInputTypeChanged( | 140 void RenderWidgetHostViewChildFrame::TextInputTypeChanged( |
| 141 ui::TextInputType type, | 141 ui::TextInputType type, |
| 142 ui::TextInputMode input_mode, | 142 ui::TextInputMode input_mode, |
| 143 bool can_compose_inline, | 143 bool can_compose_inline, |
| 144 int flags) { | 144 int flags) { |
| 145 // TODO(kenrb): Implement. | 145 // TODO(kenrb): Implement. |
| 146 } | 146 } |
| 147 | 147 |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 #endif // defined(OS_WIN) | 302 #endif // defined(OS_WIN) |
| 303 | 303 |
| 304 BrowserAccessibilityManager* | 304 BrowserAccessibilityManager* |
| 305 RenderWidgetHostViewChildFrame::CreateBrowserAccessibilityManager( | 305 RenderWidgetHostViewChildFrame::CreateBrowserAccessibilityManager( |
| 306 BrowserAccessibilityDelegate* delegate) { | 306 BrowserAccessibilityDelegate* delegate) { |
| 307 return BrowserAccessibilityManager::Create( | 307 return BrowserAccessibilityManager::Create( |
| 308 BrowserAccessibilityManager::GetEmptyDocument(), delegate); | 308 BrowserAccessibilityManager::GetEmptyDocument(), delegate); |
| 309 } | 309 } |
| 310 | 310 |
| 311 } // namespace content | 311 } // namespace content |
| OLD | NEW |