Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(566)

Side by Side Diff: content/renderer/render_view_impl.cc

Issue 2043903002: Move didChangeCursor calls from WebViewClient to WebWidgetClient. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed todo Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/renderer/render_view_impl.h ('k') | third_party/WebKit/Source/core/frame/FrameView.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « content/renderer/render_view_impl.h ('k') | third_party/WebKit/Source/core/frame/FrameView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698