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

Side by Side Diff: third_party/WebKit/Source/web/WebViewFrameWidget.cpp

Issue 2278283002: Implement Mac Pop-up Dictionary for OOPIF. (Closed)
Patch Set: Addressing lfg@'s comment Created 4 years, 2 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
OLDNEW
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 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 void WebViewFrameWidget::attachCompositorAnimationTimeline(CompositorAnimationTi meline* compositorTimeline) 290 void WebViewFrameWidget::attachCompositorAnimationTimeline(CompositorAnimationTi meline* compositorTimeline)
291 { 291 {
292 m_webView->attachCompositorAnimationTimeline(compositorTimeline); 292 m_webView->attachCompositorAnimationTimeline(compositorTimeline);
293 } 293 }
294 294
295 void WebViewFrameWidget::detachCompositorAnimationTimeline(CompositorAnimationTi meline* compositorTimeline) 295 void WebViewFrameWidget::detachCompositorAnimationTimeline(CompositorAnimationTi meline* compositorTimeline)
296 { 296 {
297 m_webView->detachCompositorAnimationTimeline(compositorTimeline); 297 m_webView->detachCompositorAnimationTimeline(compositorTimeline);
298 } 298 }
299 299
300 HitTestResult WebViewFrameWidget::coreHitTestResultAt(const WebPoint& point)
301 {
302 return m_webView->coreHitTestResultAt(point);
303 }
304
300 } // namespace blink 305 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebViewFrameWidget.h ('k') | third_party/WebKit/Source/web/mac/WebSubstringUtil.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698