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 2006 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2017 } | 2017 } |
2018 | 2018 |
2019 void RenderViewImpl::convertWindowToViewport(blink::WebFloatRect* rect) { | 2019 void RenderViewImpl::convertWindowToViewport(blink::WebFloatRect* rect) { |
2020 RenderWidget::convertWindowToViewport(rect); | 2020 RenderWidget::convertWindowToViewport(rect); |
2021 } | 2021 } |
2022 | 2022 |
2023 void RenderViewImpl::didAutoResize(const blink::WebSize& newSize) { | 2023 void RenderViewImpl::didAutoResize(const blink::WebSize& newSize) { |
2024 RenderWidget::didAutoResize(newSize); | 2024 RenderWidget::didAutoResize(newSize); |
2025 } | 2025 } |
2026 | 2026 |
2027 void RenderViewImpl::didChangeCursor(const blink::WebCursorInfo& info) { | |
2028 RenderWidget::didChangeCursor(info); | |
2029 } | |
2030 | |
2031 void RenderViewImpl::didInvalidateRect(const blink::WebRect& rect) { | 2027 void RenderViewImpl::didInvalidateRect(const blink::WebRect& rect) { |
2032 RenderWidget::didInvalidateRect(rect); | 2028 RenderWidget::didInvalidateRect(rect); |
2033 } | 2029 } |
2034 | 2030 |
2035 void RenderViewImpl::didMeaningfulLayout( | 2031 void RenderViewImpl::didMeaningfulLayout( |
2036 blink::WebMeaningfulLayout layout_type) { | 2032 blink::WebMeaningfulLayout layout_type) { |
2037 RenderWidget::didMeaningfulLayout(layout_type); | 2033 RenderWidget::didMeaningfulLayout(layout_type); |
2038 } | 2034 } |
2039 | 2035 |
2040 void RenderViewImpl::didOverscroll( | 2036 void RenderViewImpl::didOverscroll( |
(...skipping 1220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3261 return render_frame->focused_pepper_plugin(); | 3257 return render_frame->focused_pepper_plugin(); |
3262 } | 3258 } |
3263 frame = frame->traverseNext(false); | 3259 frame = frame->traverseNext(false); |
3264 } | 3260 } |
3265 | 3261 |
3266 return nullptr; | 3262 return nullptr; |
3267 } | 3263 } |
3268 #endif | 3264 #endif |
3269 | 3265 |
3270 } // namespace content | 3266 } // namespace content |
OLD | NEW |