| 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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 } | 180 } |
| 181 | 181 |
| 182 void WebViewFrameWidget::didNotAcquirePointerLock() { | 182 void WebViewFrameWidget::didNotAcquirePointerLock() { |
| 183 return m_webView->didNotAcquirePointerLock(); | 183 return m_webView->didNotAcquirePointerLock(); |
| 184 } | 184 } |
| 185 | 185 |
| 186 void WebViewFrameWidget::didLosePointerLock() { | 186 void WebViewFrameWidget::didLosePointerLock() { |
| 187 return m_webView->didLosePointerLock(); | 187 return m_webView->didLosePointerLock(); |
| 188 } | 188 } |
| 189 | 189 |
| 190 void WebViewFrameWidget::didChangeWindowResizerRect() { | |
| 191 return m_webView->didChangeWindowResizerRect(); | |
| 192 } | |
| 193 | |
| 194 WebColor WebViewFrameWidget::backgroundColor() const { | 190 WebColor WebViewFrameWidget::backgroundColor() const { |
| 195 return m_webView->backgroundColor(); | 191 return m_webView->backgroundColor(); |
| 196 } | 192 } |
| 197 | 193 |
| 198 WebPagePopup* WebViewFrameWidget::pagePopup() const { | 194 WebPagePopup* WebViewFrameWidget::pagePopup() const { |
| 199 return m_webView->pagePopup(); | 195 return m_webView->pagePopup(); |
| 200 } | 196 } |
| 201 | 197 |
| 202 bool WebViewFrameWidget::getCompositionCharacterBounds( | 198 bool WebViewFrameWidget::getCompositionCharacterBounds( |
| 203 WebVector<WebRect>& bounds) { | 199 WebVector<WebRect>& bounds) { |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 void WebViewFrameWidget::detachCompositorAnimationTimeline( | 255 void WebViewFrameWidget::detachCompositorAnimationTimeline( |
| 260 CompositorAnimationTimeline* compositorTimeline) { | 256 CompositorAnimationTimeline* compositorTimeline) { |
| 261 m_webView->detachCompositorAnimationTimeline(compositorTimeline); | 257 m_webView->detachCompositorAnimationTimeline(compositorTimeline); |
| 262 } | 258 } |
| 263 | 259 |
| 264 HitTestResult WebViewFrameWidget::coreHitTestResultAt(const WebPoint& point) { | 260 HitTestResult WebViewFrameWidget::coreHitTestResultAt(const WebPoint& point) { |
| 265 return m_webView->coreHitTestResultAt(point); | 261 return m_webView->coreHitTestResultAt(point); |
| 266 } | 262 } |
| 267 | 263 |
| 268 } // namespace blink | 264 } // namespace blink |
| OLD | NEW |