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

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

Issue 2034393003: testRunner.layoutAndPaintAsyncThen ==> testRunner.compositeAsyncThen (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 #ifndef WebViewFrameWidget_h 5 #ifndef WebViewFrameWidget_h
6 #define WebViewFrameWidget_h 6 #define WebViewFrameWidget_h
7 7
8 #include "platform/heap/Handle.h" 8 #include "platform/heap/Handle.h"
9 #include "public/web/WebFrameWidget.h" 9 #include "public/web/WebFrameWidget.h"
10 #include "wtf/Noncopyable.h" 10 #include "wtf/Noncopyable.h"
(...skipping 29 matching lines...) Expand all
40 // WebFrameWidget overrides: 40 // WebFrameWidget overrides:
41 void close() override; 41 void close() override;
42 WebSize size() override; 42 WebSize size() override;
43 void resize(const WebSize&) override; 43 void resize(const WebSize&) override;
44 void resizeVisualViewport(const WebSize&) override; 44 void resizeVisualViewport(const WebSize&) override;
45 void didEnterFullScreen() override; 45 void didEnterFullScreen() override;
46 void didExitFullScreen() override; 46 void didExitFullScreen() override;
47 void beginFrame(double lastFrameTimeMonotonic) override; 47 void beginFrame(double lastFrameTimeMonotonic) override;
48 void updateAllLifecyclePhases() override; 48 void updateAllLifecyclePhases() override;
49 void paint(WebCanvas*, const WebRect& viewPort) override; 49 void paint(WebCanvas*, const WebRect& viewPort) override;
50 void layoutAndPaintAsync(WebLayoutAndPaintAsyncCallback*) override;
51 void compositeAndReadbackAsync(WebCompositeAndReadbackAsyncCallback*) overri de; 50 void compositeAndReadbackAsync(WebCompositeAndReadbackAsyncCallback*) overri de;
52 void themeChanged() override; 51 void themeChanged() override;
53 WebInputEventResult handleInputEvent(const WebInputEvent&) override; 52 WebInputEventResult handleInputEvent(const WebInputEvent&) override;
54 void setCursorVisibilityState(bool isVisible) override; 53 void setCursorVisibilityState(bool isVisible) override;
55 bool hasTouchEventHandlersAt(const WebPoint&) override; 54 bool hasTouchEventHandlersAt(const WebPoint&) override;
56 void applyViewportDeltas( 55 void applyViewportDeltas(
57 const WebFloatSize& visualViewportDelta, 56 const WebFloatSize& visualViewportDelta,
58 const WebFloatSize& layoutViewportDelta, 57 const WebFloatSize& layoutViewportDelta,
59 const WebFloatSize& elasticOverscrollDelta, 58 const WebFloatSize& elasticOverscrollDelta,
60 float scaleFactor, 59 float scaleFactor,
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 98
100 private: 99 private:
101 WebWidgetClient* m_client; 100 WebWidgetClient* m_client;
102 RefPtr<WebViewImpl> m_webView; 101 RefPtr<WebViewImpl> m_webView;
103 Persistent<WebLocalFrameImpl> m_mainFrame; 102 Persistent<WebLocalFrameImpl> m_mainFrame;
104 }; 103 };
105 104
106 } // namespace blink 105 } // namespace blink
107 106
108 #endif // WebViewFrameWidget_h 107 #endif // WebViewFrameWidget_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebPagePopupImpl.cpp ('k') | third_party/WebKit/Source/web/WebViewFrameWidget.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698