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

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

Issue 2139303002: Clean up around methods to enter/exit fullscreen (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 void WebViewFrameWidget::resize(const WebSize& size) 46 void WebViewFrameWidget::resize(const WebSize& size)
47 { 47 {
48 return m_webView->resize(size); 48 return m_webView->resize(size);
49 } 49 }
50 50
51 void WebViewFrameWidget::resizeVisualViewport(const WebSize& size) 51 void WebViewFrameWidget::resizeVisualViewport(const WebSize& size)
52 { 52 {
53 return m_webView->resizeVisualViewport(size); 53 return m_webView->resizeVisualViewport(size);
54 } 54 }
55 55
56 void WebViewFrameWidget::didEnterFullScreen() 56 void WebViewFrameWidget::didEnterFullscreen()
57 { 57 {
58 return m_webView->didEnterFullScreen(); 58 return m_webView->didEnterFullscreen();
59 } 59 }
60 60
61 void WebViewFrameWidget::didExitFullScreen() 61 void WebViewFrameWidget::didExitFullscreen()
62 { 62 {
63 return m_webView->didExitFullScreen(); 63 return m_webView->didExitFullscreen();
64 } 64 }
65 65
66 void WebViewFrameWidget::beginFrame(double lastFrameTimeMonotonic) 66 void WebViewFrameWidget::beginFrame(double lastFrameTimeMonotonic)
67 { 67 {
68 return m_webView->beginFrame(lastFrameTimeMonotonic); 68 return m_webView->beginFrame(lastFrameTimeMonotonic);
69 } 69 }
70 70
71 void WebViewFrameWidget::updateAllLifecyclePhases() 71 void WebViewFrameWidget::updateAllLifecyclePhases()
72 { 72 {
73 return m_webView->updateAllLifecyclePhases(); 73 return m_webView->updateAllLifecyclePhases();
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 { 276 {
277 m_webView->attachCompositorAnimationTimeline(compositorTimeline); 277 m_webView->attachCompositorAnimationTimeline(compositorTimeline);
278 } 278 }
279 279
280 void WebViewFrameWidget::detachCompositorAnimationTimeline(CompositorAnimationTi meline* compositorTimeline) 280 void WebViewFrameWidget::detachCompositorAnimationTimeline(CompositorAnimationTi meline* compositorTimeline)
281 { 281 {
282 m_webView->detachCompositorAnimationTimeline(compositorTimeline); 282 m_webView->detachCompositorAnimationTimeline(compositorTimeline);
283 } 283 }
284 284
285 } // namespace blink 285 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebViewFrameWidget.h ('k') | third_party/WebKit/Source/web/WebViewImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698