OLD | NEW |
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 <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 #include "third_party/skia/include/core/SkBitmap.h" | 43 #include "third_party/skia/include/core/SkBitmap.h" |
44 #include "ui/base/ime/text_input_mode.h" | 44 #include "ui/base/ime/text_input_mode.h" |
45 #include "ui/base/ime/text_input_type.h" | 45 #include "ui/base/ime/text_input_type.h" |
46 #include "ui/base/ui_base_types.h" | 46 #include "ui/base/ui_base_types.h" |
47 #include "ui/gfx/geometry/rect.h" | 47 #include "ui/gfx/geometry/rect.h" |
48 #include "ui/gfx/geometry/vector2d.h" | 48 #include "ui/gfx/geometry/vector2d.h" |
49 #include "ui/gfx/geometry/vector2d_f.h" | 49 #include "ui/gfx/geometry/vector2d_f.h" |
50 #include "ui/gfx/native_widget_types.h" | 50 #include "ui/gfx/native_widget_types.h" |
51 #include "ui/gfx/range/range.h" | 51 #include "ui/gfx/range/range.h" |
52 #include "ui/surface/transport_dib.h" | 52 #include "ui/surface/transport_dib.h" |
| 53 #include "url/gurl.h" |
53 | 54 |
54 namespace IPC { | 55 namespace IPC { |
55 class SyncMessage; | 56 class SyncMessage; |
56 class SyncMessageFilter; | 57 class SyncMessageFilter; |
57 } | 58 } |
58 | 59 |
59 namespace blink { | 60 namespace blink { |
60 struct WebDeviceEmulationParams; | 61 struct WebDeviceEmulationParams; |
61 class WebGestureEvent; | 62 class WebGestureEvent; |
62 class WebLocalFrame; | 63 class WebLocalFrame; |
(...skipping 694 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
757 | 758 |
758 scoped_ptr<scheduler::RenderWidgetSchedulingState> | 759 scoped_ptr<scheduler::RenderWidgetSchedulingState> |
759 render_widget_scheduling_state_; | 760 render_widget_scheduling_state_; |
760 | 761 |
761 DISALLOW_COPY_AND_ASSIGN(RenderWidget); | 762 DISALLOW_COPY_AND_ASSIGN(RenderWidget); |
762 }; | 763 }; |
763 | 764 |
764 } // namespace content | 765 } // namespace content |
765 | 766 |
766 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ | 767 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ |
OLD | NEW |