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 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
15 #include "base/memory/weak_ptr.h" | 15 #include "base/memory/weak_ptr.h" |
16 #include "base/time.h" | 16 #include "base/time.h" |
17 #include "base/timer.h" | 17 #include "base/timer.h" |
18 #include "cc/debug/rendering_stats.h" | 18 #include "cc/debug/rendering_stats.h" |
19 #include "content/common/content_export.h" | 19 #include "content/common/content_export.h" |
20 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h" | 20 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h" |
21 #include "content/renderer/paint_aggregator.h" | 21 #include "content/renderer/paint_aggregator.h" |
22 #include "ipc/ipc_listener.h" | 22 #include "ipc/ipc_listener.h" |
23 #include "ipc/ipc_sender.h" | 23 #include "ipc/ipc_sender.h" |
24 #include "third_party/WebKit/Source/Platform/chromium/public/WebRect.h" | 24 #include "third_party/WebKit/public/platform/WebRect.h" |
25 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCompositionUnderli
ne.h" | 25 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCompositionUnderli
ne.h" |
26 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupType.h" | 26 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupType.h" |
27 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h" | 27 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h" |
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" |
(...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
709 bool overscroll_notifications_enabled_; | 709 bool overscroll_notifications_enabled_; |
710 | 710 |
711 base::WeakPtrFactory<RenderWidget> weak_ptr_factory_; | 711 base::WeakPtrFactory<RenderWidget> weak_ptr_factory_; |
712 | 712 |
713 DISALLOW_COPY_AND_ASSIGN(RenderWidget); | 713 DISALLOW_COPY_AND_ASSIGN(RenderWidget); |
714 }; | 714 }; |
715 | 715 |
716 } // namespace content | 716 } // namespace content |
717 | 717 |
718 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ | 718 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ |
OLD | NEW |