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

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

Issue 1326693003: Revert of Make classes and structures in web fast-allocated. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 3 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 | « Source/web/PageOverlay.h ('k') | Source/web/PrerendererClientImpl.h » ('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) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 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 15 matching lines...) Expand all
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #ifndef PageWidgetDelegate_h 31 #ifndef PageWidgetDelegate_h
32 #define PageWidgetDelegate_h 32 #define PageWidgetDelegate_h
33 33
34 #include "public/platform/WebCanvas.h" 34 #include "public/platform/WebCanvas.h"
35 #include "public/web/WebWidget.h" 35 #include "public/web/WebWidget.h"
36 #include "wtf/Allocator.h"
37 #include "wtf/OwnPtr.h" 36 #include "wtf/OwnPtr.h"
38 37
39 namespace blink { 38 namespace blink {
40 39
41 class LocalFrame; 40 class LocalFrame;
42 class Page; 41 class Page;
43 class WebGestureEvent; 42 class WebGestureEvent;
44 class WebInputEvent; 43 class WebInputEvent;
45 class WebKeyboardEvent; 44 class WebKeyboardEvent;
46 class WebMouseEvent; 45 class WebMouseEvent;
(...skipping 10 matching lines...) Expand all
57 virtual bool handleKeyEvent(const WebKeyboardEvent&) = 0; 56 virtual bool handleKeyEvent(const WebKeyboardEvent&) = 0;
58 virtual bool handleCharEvent(const WebKeyboardEvent&) = 0; 57 virtual bool handleCharEvent(const WebKeyboardEvent&) = 0;
59 virtual bool handleGestureEvent(const WebGestureEvent&) = 0; 58 virtual bool handleGestureEvent(const WebGestureEvent&) = 0;
60 virtual bool handleTouchEvent(LocalFrame& mainFrame, const WebTouchEvent&); 59 virtual bool handleTouchEvent(LocalFrame& mainFrame, const WebTouchEvent&);
61 virtual ~PageWidgetEventHandler() { } 60 virtual ~PageWidgetEventHandler() { }
62 }; 61 };
63 62
64 63
65 // Common implementation of WebViewImpl and WebPagePopupImpl. 64 // Common implementation of WebViewImpl and WebPagePopupImpl.
66 class PageWidgetDelegate { 65 class PageWidgetDelegate {
67 STATIC_ONLY(PageWidgetDelegate);
68 public: 66 public:
69 // rootFrame arguments indicate a root localFrame from which to start perfor ming the 67 // rootFrame arguments indicate a root localFrame from which to start perfor ming the
70 // specified operation. If rootFrame is 0, these methods will attempt to use the 68 // specified operation. If rootFrame is 0, these methods will attempt to use the
71 // Page's mainFrame(), if it is a LocalFrame. 69 // Page's mainFrame(), if it is a LocalFrame.
72 static void animate(Page&, double monotonicFrameBeginTime, LocalFrame& root) ; 70 static void animate(Page&, double monotonicFrameBeginTime, LocalFrame& root) ;
73 static void layout(Page&, LocalFrame& root); 71 static void layout(Page&, LocalFrame& root);
74 static void paint(Page&, WebCanvas*, const WebRect&, LocalFrame& root); 72 static void paint(Page&, WebCanvas*, const WebRect&, LocalFrame& root);
75 static void paintIgnoringCompositing(Page&, WebCanvas*, const WebRect&, Loca lFrame& root); 73 static void paintIgnoringCompositing(Page&, WebCanvas*, const WebRect&, Loca lFrame& root);
76 static bool handleInputEvent(PageWidgetEventHandler&, const WebInputEvent&, LocalFrame* root); 74 static bool handleInputEvent(PageWidgetEventHandler&, const WebInputEvent&, LocalFrame* root);
75
76 private:
77 PageWidgetDelegate() { }
77 }; 78 };
78 79
79 } 80 }
80 #endif 81 #endif
OLDNEW
« no previous file with comments | « Source/web/PageOverlay.h ('k') | Source/web/PrerendererClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698