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

Side by Side Diff: Source/web/WebFrameWidgetImpl.h

Issue 1127013005: Implement layoutAndPaintAsync() for WebPagePopupImpl and WebFrameWidgetImpl (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: It also fixes crbug.com/485501 Created 5 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « LayoutTests/TestExpectations ('k') | Source/web/WebFrameWidgetImpl.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 /* 1 /*
2 * Copyright (C) 2014 Google Inc. All rights reserved. 2 * Copyright (C) 2014 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 void resize(const WebSize&) override; 71 void resize(const WebSize&) override;
72 void resizePinchViewport(const WebSize&) override; 72 void resizePinchViewport(const WebSize&) override;
73 void willEndLiveResize() override; 73 void willEndLiveResize() override;
74 void willEnterFullScreen() override; 74 void willEnterFullScreen() override;
75 void didEnterFullScreen() override; 75 void didEnterFullScreen() override;
76 void willExitFullScreen() override; 76 void willExitFullScreen() override;
77 void didExitFullScreen() override; 77 void didExitFullScreen() override;
78 void beginFrame(const WebBeginFrameArgs&) override; 78 void beginFrame(const WebBeginFrameArgs&) override;
79 void layout() override; 79 void layout() override;
80 void paint(WebCanvas*, const WebRect&) override; 80 void paint(WebCanvas*, const WebRect&) override;
81 void layoutAndPaintAsync(WebLayoutAndPaintAsyncCallback*) override;
81 void compositeAndReadbackAsync(WebCompositeAndReadbackAsyncCallback*) overri de; 82 void compositeAndReadbackAsync(WebCompositeAndReadbackAsyncCallback*) overri de;
82 bool isTrackingRepaints() const override; 83 bool isTrackingRepaints() const override;
83 void themeChanged() override; 84 void themeChanged() override;
84 bool handleInputEvent(const WebInputEvent&) override; 85 bool handleInputEvent(const WebInputEvent&) override;
85 void setCursorVisibilityState(bool isVisible) override; 86 void setCursorVisibilityState(bool isVisible) override;
86 bool hasTouchEventHandlersAt(const WebPoint&) override; 87 bool hasTouchEventHandlersAt(const WebPoint&) override;
87 88
88 void applyViewportDeltas( 89 void applyViewportDeltas(
89 const WebFloatSize& pinchViewportDelta, 90 const WebFloatSize& pinchViewportDelta,
90 const WebFloatSize& mainFrameDelta, 91 const WebFloatSize& mainFrameDelta,
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 bool m_suppressNextKeypressEvent; 206 bool m_suppressNextKeypressEvent;
206 207
207 bool m_ignoreInputEvents; 208 bool m_ignoreInputEvents;
208 209
209 static const WebInputEvent* m_currentInputEvent; 210 static const WebInputEvent* m_currentInputEvent;
210 }; 211 };
211 212
212 } // namespace blink 213 } // namespace blink
213 214
214 #endif 215 #endif
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | Source/web/WebFrameWidgetImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698