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

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

Issue 898783003: Move rendering/RenderLayer* to layout/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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 | « Source/web/PageWidgetDelegate.cpp ('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 28 matching lines...) Expand all
39 #include "public/web/WebInputEvent.h" 39 #include "public/web/WebInputEvent.h"
40 #include "web/PageWidgetDelegate.h" 40 #include "web/PageWidgetDelegate.h"
41 #include "wtf/OwnPtr.h" 41 #include "wtf/OwnPtr.h"
42 #include "wtf/RefCounted.h" 42 #include "wtf/RefCounted.h"
43 43
44 namespace blink { 44 namespace blink {
45 class Frame; 45 class Frame;
46 class Element; 46 class Element;
47 class LocalFrame; 47 class LocalFrame;
48 class Page; 48 class Page;
49 class RenderLayerCompositor; 49 class LayerCompositor;
50 class UserGestureToken; 50 class UserGestureToken;
51 class WebLayer; 51 class WebLayer;
52 class WebLayerTreeView; 52 class WebLayerTreeView;
53 class WebLocalFrameImpl; 53 class WebLocalFrameImpl;
54 class WebMouseEvent; 54 class WebMouseEvent;
55 class WebMouseWheelEvent; 55 class WebMouseWheelEvent;
56 class WebViewImpl; 56 class WebViewImpl;
57 57
58 class WebFrameWidgetImpl final : public WebFrameWidget 58 class WebFrameWidgetImpl final : public WebFrameWidget
59 , public PageWidgetEventHandler 59 , public PageWidgetEventHandler
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 123
124 WebWidgetClient* client() const { return m_client; } 124 WebWidgetClient* client() const { return m_client; }
125 125
126 Frame* focusedCoreFrame() const; 126 Frame* focusedCoreFrame() const;
127 127
128 // Returns the currently focused Element or null if no element has focus. 128 // Returns the currently focused Element or null if no element has focus.
129 Element* focusedElement() const; 129 Element* focusedElement() const;
130 130
131 void scheduleAnimation(); 131 void scheduleAnimation();
132 132
133 RenderLayerCompositor* compositor() const; 133 LayerCompositor* compositor() const;
134 void suppressInvalidations(bool enable); 134 void suppressInvalidations(bool enable);
135 void setRootGraphicsLayer(GraphicsLayer*); 135 void setRootGraphicsLayer(GraphicsLayer*);
136 136
137 // Exposed for the purpose of overriding device metrics. 137 // Exposed for the purpose of overriding device metrics.
138 void sendResizeEventAndRepaint(); 138 void sendResizeEventAndRepaint();
139 139
140 void updateMainFrameLayoutSize(); 140 void updateMainFrameLayoutSize();
141 141
142 // Returns the page object associated with this widget. This may be null whe n 142 // Returns the page object associated with this widget. This may be null whe n
143 // the page is shutting down, but will be valid at all other times. 143 // the page is shutting down, but will be valid at all other times.
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 bool m_suppressNextKeypressEvent; 206 bool m_suppressNextKeypressEvent;
207 207
208 bool m_ignoreInputEvents; 208 bool m_ignoreInputEvents;
209 209
210 static const WebInputEvent* m_currentInputEvent; 210 static const WebInputEvent* m_currentInputEvent;
211 }; 211 };
212 212
213 } // namespace blink 213 } // namespace blink
214 214
215 #endif 215 #endif
OLDNEW
« no previous file with comments | « Source/web/PageWidgetDelegate.cpp ('k') | Source/web/WebFrameWidgetImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698