OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/renderer/render_view_impl.h" | 5 #include "content/renderer/render_view_impl.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <cmath> | 8 #include <cmath> |
9 #include <memory> | 9 #include <memory> |
10 | 10 |
(...skipping 2002 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2013 } | 2013 } |
2014 | 2014 |
2015 void RenderViewImpl::convertWindowToViewport(blink::WebFloatRect* rect) { | 2015 void RenderViewImpl::convertWindowToViewport(blink::WebFloatRect* rect) { |
2016 RenderWidget::convertWindowToViewport(rect); | 2016 RenderWidget::convertWindowToViewport(rect); |
2017 } | 2017 } |
2018 | 2018 |
2019 void RenderViewImpl::didAutoResize(const blink::WebSize& newSize) { | 2019 void RenderViewImpl::didAutoResize(const blink::WebSize& newSize) { |
2020 RenderWidget::didAutoResize(newSize); | 2020 RenderWidget::didAutoResize(newSize); |
2021 } | 2021 } |
2022 | 2022 |
2023 void RenderViewImpl::didChangeCursor(const blink::WebCursorInfo& info) { | |
2024 RenderWidget::didChangeCursor(info); | |
2025 } | |
2026 | |
2027 void RenderViewImpl::didInvalidateRect(const blink::WebRect& rect) { | 2023 void RenderViewImpl::didInvalidateRect(const blink::WebRect& rect) { |
2028 RenderWidget::didInvalidateRect(rect); | 2024 RenderWidget::didInvalidateRect(rect); |
2029 } | 2025 } |
2030 | 2026 |
2031 void RenderViewImpl::didMeaningfulLayout( | 2027 void RenderViewImpl::didMeaningfulLayout( |
2032 blink::WebMeaningfulLayout layout_type) { | 2028 blink::WebMeaningfulLayout layout_type) { |
2033 RenderWidget::didMeaningfulLayout(layout_type); | 2029 RenderWidget::didMeaningfulLayout(layout_type); |
2034 } | 2030 } |
2035 | 2031 |
2036 void RenderViewImpl::didOverscroll( | 2032 void RenderViewImpl::didOverscroll( |
(...skipping 1212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3249 return render_frame->focused_pepper_plugin(); | 3245 return render_frame->focused_pepper_plugin(); |
3250 } | 3246 } |
3251 frame = frame->traverseNext(false); | 3247 frame = frame->traverseNext(false); |
3252 } | 3248 } |
3253 | 3249 |
3254 return nullptr; | 3250 return nullptr; |
3255 } | 3251 } |
3256 #endif | 3252 #endif |
3257 | 3253 |
3258 } // namespace content | 3254 } // namespace content |
OLD | NEW |