OLD | NEW |
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 | 7 |
8 #include <vector> | 8 #include <vector> |
| 9 |
| 10 #include "app/gfx/native_widget_types.h" |
9 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
10 #include "base/gfx/native_widget_types.h" | |
11 #include "base/gfx/point.h" | 12 #include "base/gfx/point.h" |
12 #include "base/gfx/rect.h" | 13 #include "base/gfx/rect.h" |
13 #include "base/gfx/size.h" | 14 #include "base/gfx/size.h" |
14 #include "base/ref_counted.h" | 15 #include "base/ref_counted.h" |
15 #include "base/shared_memory.h" | 16 #include "base/shared_memory.h" |
16 #include "chrome/renderer/render_process.h" | 17 #include "chrome/renderer/render_process.h" |
17 #include "ipc/ipc_channel.h" | 18 #include "ipc/ipc_channel.h" |
18 #include "skia/ext/platform_canvas.h" | 19 #include "skia/ext/platform_canvas.h" |
19 #include "third_party/skia/include/core/SkBitmap.h" | 20 #include "third_party/skia/include/core/SkBitmap.h" |
20 #include "webkit/api/public/WebCompositionCommand.h" | 21 #include "webkit/api/public/WebCompositionCommand.h" |
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
316 WebKit::WebRect pending_window_rect_; | 317 WebKit::WebRect pending_window_rect_; |
317 | 318 |
318 scoped_ptr<ViewHostMsg_ShowPopup_Params> popup_params_; | 319 scoped_ptr<ViewHostMsg_ShowPopup_Params> popup_params_; |
319 | 320 |
320 scoped_ptr<IPC::Message> pending_input_event_ack_; | 321 scoped_ptr<IPC::Message> pending_input_event_ack_; |
321 | 322 |
322 DISALLOW_COPY_AND_ASSIGN(RenderWidget); | 323 DISALLOW_COPY_AND_ASSIGN(RenderWidget); |
323 }; | 324 }; |
324 | 325 |
325 #endif // CHROME_RENDERER_RENDER_WIDGET_H_ | 326 #endif // CHROME_RENDERER_RENDER_WIDGET_H_ |
OLD | NEW |