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