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

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

Issue 1345343003: Remove lots of old blur plumbing. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase. Created 5 years, 2 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_view_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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 164
165 // IPC::Sender 165 // IPC::Sender
166 bool Send(IPC::Message* msg) override; 166 bool Send(IPC::Message* msg) override;
167 167
168 // blink::WebWidgetClient 168 // blink::WebWidgetClient
169 void didAutoResize(const blink::WebSize& new_size) override; 169 void didAutoResize(const blink::WebSize& new_size) override;
170 void initializeLayerTreeView() override; 170 void initializeLayerTreeView() override;
171 blink::WebLayerTreeView* layerTreeView() override; 171 blink::WebLayerTreeView* layerTreeView() override;
172 void didMeaningfulLayout(blink::WebMeaningfulLayout layout_type) override; 172 void didMeaningfulLayout(blink::WebMeaningfulLayout layout_type) override;
173 void didFocus() override; 173 void didFocus() override;
174 void didBlur() override;
175 void didChangeCursor(const blink::WebCursorInfo&) override; 174 void didChangeCursor(const blink::WebCursorInfo&) override;
176 void closeWidgetSoon() override; 175 void closeWidgetSoon() override;
177 void show(blink::WebNavigationPolicy) override; 176 void show(blink::WebNavigationPolicy) override;
178 blink::WebRect windowRect() override; 177 blink::WebRect windowRect() override;
179 void setToolTipText(const blink::WebString& text, 178 void setToolTipText(const blink::WebString& text,
180 blink::WebTextDirection hint) override; 179 blink::WebTextDirection hint) override;
181 void setWindowRect(const blink::WebRect&) override; 180 void setWindowRect(const blink::WebRect&) override;
182 blink::WebRect windowResizerRect() override; 181 blink::WebRect windowResizerRect() override;
183 blink::WebRect rootWindowRect() override; 182 blink::WebRect rootWindowRect() override;
184 blink::WebScreenInfo screenInfo() override; 183 blink::WebScreenInfo screenInfo() override;
(...skipping 604 matching lines...) Expand 10 before | Expand all | Expand 10 after
789 ui::MenuSourceType context_menu_source_type_; 788 ui::MenuSourceType context_menu_source_type_;
790 bool has_host_context_menu_location_; 789 bool has_host_context_menu_location_;
791 gfx::Point host_context_menu_location_; 790 gfx::Point host_context_menu_location_;
792 791
793 DISALLOW_COPY_AND_ASSIGN(RenderWidget); 792 DISALLOW_COPY_AND_ASSIGN(RenderWidget);
794 }; 793 };
795 794
796 } // namespace content 795 } // namespace content
797 796
798 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ 797 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_
OLDNEW
« no previous file with comments | « content/renderer/render_view_impl.cc ('k') | content/renderer/render_widget.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698