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

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

Issue 3032027: Header cleanup in chrome/renderer/. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: change away from lazy initialization Created 10 years, 5 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 | « chrome/renderer/render_thread.cc ('k') | chrome/renderer/renderer_histogram_snapshots.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 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 CHROME_RENDERER_RENDER_WIDGET_H_ 5 #ifndef CHROME_RENDERER_RENDER_WIDGET_H_
6 #define CHROME_RENDERER_RENDER_WIDGET_H_ 6 #define CHROME_RENDERER_RENDER_WIDGET_H_
7 #pragma once 7 #pragma once
8 8
9 #include <vector> 9 #include <vector>
10 10
11 #include "app/surface/transport_dib.h" 11 #include "app/surface/transport_dib.h"
12 #include "base/basictypes.h" 12 #include "base/basictypes.h"
13 #include "base/ref_counted.h" 13 #include "base/ref_counted.h"
14 #include "base/shared_memory.h"
15 #include "chrome/renderer/paint_aggregator.h" 14 #include "chrome/renderer/paint_aggregator.h"
16 #include "chrome/renderer/render_process.h" 15 #include "chrome/renderer/render_process.h"
17 #include "gfx/native_widget_types.h" 16 #include "gfx/native_widget_types.h"
18 #include "gfx/point.h"
19 #include "gfx/rect.h" 17 #include "gfx/rect.h"
20 #include "gfx/size.h" 18 #include "gfx/size.h"
21 #include "ipc/ipc_channel.h" 19 #include "ipc/ipc_channel.h"
22 #include "skia/ext/platform_canvas.h"
23 #include "third_party/WebKit/WebKit/chromium/public/WebCompositionUnderline.h" 20 #include "third_party/WebKit/WebKit/chromium/public/WebCompositionUnderline.h"
24 #include "third_party/WebKit/WebKit/chromium/public/WebPopupType.h" 21 #include "third_party/WebKit/WebKit/chromium/public/WebPopupType.h"
25 #include "third_party/WebKit/WebKit/chromium/public/WebRect.h" 22 #include "third_party/WebKit/WebKit/chromium/public/WebRect.h"
26 #include "third_party/WebKit/WebKit/chromium/public/WebTextDirection.h" 23 #include "third_party/WebKit/WebKit/chromium/public/WebTextDirection.h"
27 #include "third_party/WebKit/WebKit/chromium/public/WebTextInputType.h" 24 #include "third_party/WebKit/WebKit/chromium/public/WebTextInputType.h"
28 #include "third_party/WebKit/WebKit/chromium/public/WebWidgetClient.h" 25 #include "third_party/WebKit/WebKit/chromium/public/WebWidgetClient.h"
29 #include "third_party/skia/include/core/SkBitmap.h" 26 #include "third_party/skia/include/core/SkBitmap.h"
30 #include "webkit/glue/webcursor.h" 27 #include "webkit/glue/webcursor.h"
31 28
32 class RenderThreadBase; 29 class RenderThreadBase;
33 struct ViewHostMsg_ShowPopup_Params; 30 struct ViewHostMsg_ShowPopup_Params;
34 31
32 namespace gfx {
33 class Point;
34 }
35
36 namespace skia {
37 class PlatformCanvas;
38 }
39
35 namespace WebKit { 40 namespace WebKit {
36 struct WebPopupMenuInfo; 41 struct WebPopupMenuInfo;
37 } 42 }
38 43
39 namespace webkit_glue { 44 namespace webkit_glue {
40 struct WebPluginGeometry; 45 struct WebPluginGeometry;
41 } 46 }
42 47
43 // RenderWidget provides a communication bridge between a WebWidget and 48 // RenderWidget provides a communication bridge between a WebWidget and
44 // a RenderWidgetHost, the latter of which lives in a different process. 49 // a RenderWidgetHost, the latter of which lives in a different process.
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
319 // Indicates if the next sequence of Char events should be suppressed or not. 324 // Indicates if the next sequence of Char events should be suppressed or not.
320 bool suppress_next_char_events_; 325 bool suppress_next_char_events_;
321 326
322 // Set to true if painting to the window is handled by the GPU process. 327 // Set to true if painting to the window is handled by the GPU process.
323 bool is_gpu_rendering_active_; 328 bool is_gpu_rendering_active_;
324 329
325 DISALLOW_COPY_AND_ASSIGN(RenderWidget); 330 DISALLOW_COPY_AND_ASSIGN(RenderWidget);
326 }; 331 };
327 332
328 #endif // CHROME_RENDERER_RENDER_WIDGET_H_ 333 #endif // CHROME_RENDERER_RENDER_WIDGET_H_
OLDNEW
« no previous file with comments | « chrome/renderer/render_thread.cc ('k') | chrome/renderer/renderer_histogram_snapshots.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698