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 struct ViewMsg_Resize_Params; | 41 struct ViewMsg_Resize_Params; |
42 class ViewHostMsg_UpdateRect; | 42 class ViewHostMsg_UpdateRect; |
43 | 43 |
44 namespace IPC { | 44 namespace IPC { |
45 class SyncMessage; | 45 class SyncMessage; |
46 } | 46 } |
47 | 47 |
48 namespace WebKit { | 48 namespace WebKit { |
(...skipping 671 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
720 bool overscroll_notifications_enabled_; | 720 bool overscroll_notifications_enabled_; |
721 | 721 |
722 base::WeakPtrFactory<RenderWidget> weak_ptr_factory_; | 722 base::WeakPtrFactory<RenderWidget> weak_ptr_factory_; |
723 | 723 |
724 DISALLOW_COPY_AND_ASSIGN(RenderWidget); | 724 DISALLOW_COPY_AND_ASSIGN(RenderWidget); |
725 }; | 725 }; |
726 | 726 |
727 } // namespace content | 727 } // namespace content |
728 | 728 |
729 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ | 729 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ |
OLD | NEW |