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

Side by Side Diff: content/renderer/render_widget.h

Issue 1319073003: Organize Layout Hooks (content-side). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments tweaked. 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 | « content/renderer/render_frame_impl.cc ('k') | content/renderer/render_widget.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_RENDERER_RENDER_WIDGET_H_ 5 #ifndef CONTENT_RENDERER_RENDER_WIDGET_H_
6 #define CONTENT_RENDERER_RENDER_WIDGET_H_ 6 #define CONTENT_RENDERER_RENDER_WIDGET_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 10
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 // IPC::Listener 165 // IPC::Listener
166 bool OnMessageReceived(const IPC::Message& msg) override; 166 bool OnMessageReceived(const IPC::Message& msg) override;
167 167
168 // IPC::Sender 168 // IPC::Sender
169 bool Send(IPC::Message* msg) override; 169 bool Send(IPC::Message* msg) override;
170 170
171 // blink::WebWidgetClient 171 // blink::WebWidgetClient
172 virtual void didAutoResize(const blink::WebSize& new_size); 172 virtual void didAutoResize(const blink::WebSize& new_size);
173 virtual void initializeLayerTreeView(); 173 virtual void initializeLayerTreeView();
174 virtual blink::WebLayerTreeView* layerTreeView(); 174 virtual blink::WebLayerTreeView* layerTreeView();
175 virtual void didFirstVisuallyNonEmptyLayout();
176 virtual void didFirstLayoutAfterFinishedParsing();
175 virtual void didFocus(); 177 virtual void didFocus();
176 virtual void didBlur(); 178 virtual void didBlur();
177 virtual void didChangeCursor(const blink::WebCursorInfo&); 179 virtual void didChangeCursor(const blink::WebCursorInfo&);
178 virtual void closeWidgetSoon(); 180 virtual void closeWidgetSoon();
179 virtual void show(blink::WebNavigationPolicy); 181 virtual void show(blink::WebNavigationPolicy);
180 virtual blink::WebRect windowRect(); 182 virtual blink::WebRect windowRect();
181 virtual void setToolTipText(const blink::WebString& text, 183 virtual void setToolTipText(const blink::WebString& text,
182 blink::WebTextDirection hint); 184 blink::WebTextDirection hint);
183 virtual void setWindowRect(const blink::WebRect&); 185 virtual void setWindowRect(const blink::WebRect&);
184 virtual blink::WebRect windowResizerRect(); 186 virtual blink::WebRect windowResizerRect();
(...skipping 630 matching lines...) Expand 10 before | Expand all | Expand 10 after
815 ui::MenuSourceType context_menu_source_type_; 817 ui::MenuSourceType context_menu_source_type_;
816 bool has_host_context_menu_location_; 818 bool has_host_context_menu_location_;
817 gfx::Point host_context_menu_location_; 819 gfx::Point host_context_menu_location_;
818 820
819 DISALLOW_COPY_AND_ASSIGN(RenderWidget); 821 DISALLOW_COPY_AND_ASSIGN(RenderWidget);
820 }; 822 };
821 823
822 } // namespace content 824 } // namespace content
823 825
824 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ 826 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_
OLDNEW
« no previous file with comments | « content/renderer/render_frame_impl.cc ('k') | content/renderer/render_widget.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698