| 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 <deque> | 8 #include <deque> |
| 9 #include <map> | 9 #include <map> |
| 10 | 10 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextInputInfo.h" | 28 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextInputInfo.h" |
| 29 #include "third_party/WebKit/Source/WebKit/chromium/public/WebWidgetClient.h" | 29 #include "third_party/WebKit/Source/WebKit/chromium/public/WebWidgetClient.h" |
| 30 #include "third_party/skia/include/core/SkBitmap.h" | 30 #include "third_party/skia/include/core/SkBitmap.h" |
| 31 #include "ui/base/ime/text_input_type.h" | 31 #include "ui/base/ime/text_input_type.h" |
| 32 #include "ui/base/range/range.h" | 32 #include "ui/base/range/range.h" |
| 33 #include "ui/gfx/native_widget_types.h" | 33 #include "ui/gfx/native_widget_types.h" |
| 34 #include "ui/gfx/rect.h" | 34 #include "ui/gfx/rect.h" |
| 35 #include "ui/gfx/vector2d.h" | 35 #include "ui/gfx/vector2d.h" |
| 36 #include "ui/gfx/vector2d_f.h" | 36 #include "ui/gfx/vector2d_f.h" |
| 37 #include "ui/surface/transport_dib.h" | 37 #include "ui/surface/transport_dib.h" |
| 38 #include "webkit/glue/webcursor.h" | 38 #include "webkit/common/cursors/webcursor.h" |
| 39 | 39 |
| 40 struct ViewHostMsg_UpdateRect_Params; | 40 struct ViewHostMsg_UpdateRect_Params; |
| 41 class ViewHostMsg_UpdateRect; | 41 class ViewHostMsg_UpdateRect; |
| 42 | 42 |
| 43 namespace IPC { | 43 namespace IPC { |
| 44 class SyncMessage; | 44 class SyncMessage; |
| 45 } | 45 } |
| 46 | 46 |
| 47 namespace WebKit { | 47 namespace WebKit { |
| 48 class WebGestureEvent; | 48 class WebGestureEvent; |
| (...skipping 664 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 713 bool overscroll_notifications_enabled_; | 713 bool overscroll_notifications_enabled_; |
| 714 | 714 |
| 715 base::WeakPtrFactory<RenderWidget> weak_ptr_factory_; | 715 base::WeakPtrFactory<RenderWidget> weak_ptr_factory_; |
| 716 | 716 |
| 717 DISALLOW_COPY_AND_ASSIGN(RenderWidget); | 717 DISALLOW_COPY_AND_ASSIGN(RenderWidget); |
| 718 }; | 718 }; |
| 719 | 719 |
| 720 } // namespace content | 720 } // namespace content |
| 721 | 721 |
| 722 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ | 722 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ |
| OLD | NEW |