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_VIEW_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
7 | 7 |
8 #include <deque> | 8 #include <deque> |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
11 #include <string> | 11 #include <string> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
14 #include "base/basictypes.h" | 14 #include "base/basictypes.h" |
15 #include "base/gtest_prod_util.h" | 15 #include "base/gtest_prod_util.h" |
16 #include "base/id_map.h" | 16 #include "base/id_map.h" |
17 #include "base/memory/linked_ptr.h" | 17 #include "base/memory/linked_ptr.h" |
18 #include "base/memory/weak_ptr.h" | 18 #include "base/memory/weak_ptr.h" |
19 #include "base/observer_list.h" | 19 #include "base/observer_list.h" |
20 #include "base/process.h" | 20 #include "base/process.h" |
21 #include "base/timer.h" | 21 #include "base/timer/timer.h" |
22 #include "build/build_config.h" | 22 #include "build/build_config.h" |
23 #include "cc/input/top_controls_state.h" | 23 #include "cc/input/top_controls_state.h" |
24 #include "content/common/content_export.h" | 24 #include "content/common/content_export.h" |
25 #include "content/common/drag_event_source_info.h" | 25 #include "content/common/drag_event_source_info.h" |
26 #include "content/common/edit_command.h" | 26 #include "content/common/edit_command.h" |
27 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h" | 27 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h" |
28 #include "content/common/navigation_gesture.h" | 28 #include "content/common/navigation_gesture.h" |
29 #include "content/common/view_message_enums.h" | 29 #include "content/common/view_message_enums.h" |
30 #include "content/public/common/javascript_message_type.h" | 30 #include "content/public/common/javascript_message_type.h" |
31 #include "content/public/common/page_zoom.h" | 31 #include "content/public/common/page_zoom.h" |
(...skipping 1536 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1568 // use the Observer interface to filter IPC messages and receive frame change | 1568 // use the Observer interface to filter IPC messages and receive frame change |
1569 // notifications. | 1569 // notifications. |
1570 // --------------------------------------------------------------------------- | 1570 // --------------------------------------------------------------------------- |
1571 | 1571 |
1572 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1572 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1573 }; | 1573 }; |
1574 | 1574 |
1575 } // namespace content | 1575 } // namespace content |
1576 | 1576 |
1577 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1577 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |