| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be found | 2 // Use of this source code is governed by a BSD-style license that can be found |
| 3 // in the LICENSE file. | 3 // in the LICENSE file. |
| 4 | 4 |
| 5 #include "web/WebViewFrameWidget.h" | 5 #include "web/WebViewFrameWidget.h" |
| 6 | 6 |
| 7 #include "web/WebLocalFrameImpl.h" | 7 #include "web/WebLocalFrameImpl.h" |
| 8 #include "web/WebViewImpl.h" | 8 #include "web/WebViewImpl.h" |
| 9 | 9 |
| 10 namespace blink { | 10 namespace blink { |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 bool WebViewFrameWidget::confirmComposition(ConfirmCompositionBehavior selection
Behavior) | 145 bool WebViewFrameWidget::confirmComposition(ConfirmCompositionBehavior selection
Behavior) |
| 146 { | 146 { |
| 147 return m_webView->confirmComposition(selectionBehavior); | 147 return m_webView->confirmComposition(selectionBehavior); |
| 148 } | 148 } |
| 149 | 149 |
| 150 bool WebViewFrameWidget::confirmComposition(const WebString& text) | 150 bool WebViewFrameWidget::confirmComposition(const WebString& text) |
| 151 { | 151 { |
| 152 return m_webView->confirmComposition(text); | 152 return m_webView->confirmComposition(text); |
| 153 } | 153 } |
| 154 | 154 |
| 155 bool WebViewFrameWidget::compositionRange(size_t* location, size_t* length) | 155 WebRange WebViewFrameWidget::compositionRange() |
| 156 { | 156 { |
| 157 return m_webView->compositionRange(location, length); | 157 return m_webView->compositionRange(); |
| 158 } | 158 } |
| 159 | 159 |
| 160 WebTextInputInfo WebViewFrameWidget::textInputInfo() | 160 WebTextInputInfo WebViewFrameWidget::textInputInfo() |
| 161 { | 161 { |
| 162 return m_webView->textInputInfo(); | 162 return m_webView->textInputInfo(); |
| 163 } | 163 } |
| 164 | 164 |
| 165 WebTextInputType WebViewFrameWidget::textInputType() | 165 WebTextInputType WebViewFrameWidget::textInputType() |
| 166 { | 166 { |
| 167 return m_webView->textInputType(); | 167 return m_webView->textInputType(); |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 { | 281 { |
| 282 m_webView->attachCompositorAnimationTimeline(compositorTimeline); | 282 m_webView->attachCompositorAnimationTimeline(compositorTimeline); |
| 283 } | 283 } |
| 284 | 284 |
| 285 void WebViewFrameWidget::detachCompositorAnimationTimeline(CompositorAnimationTi
meline* compositorTimeline) | 285 void WebViewFrameWidget::detachCompositorAnimationTimeline(CompositorAnimationTi
meline* compositorTimeline) |
| 286 { | 286 { |
| 287 m_webView->detachCompositorAnimationTimeline(compositorTimeline); | 287 m_webView->detachCompositorAnimationTimeline(compositorTimeline); |
| 288 } | 288 } |
| 289 | 289 |
| 290 } // namespace blink | 290 } // namespace blink |
| OLD | NEW |