| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 #include "base/memory/weak_ptr.h" | 21 #include "base/memory/weak_ptr.h" |
| 22 #include "base/observer_list.h" | 22 #include "base/observer_list.h" |
| 23 #include "base/process/process.h" | 23 #include "base/process/process.h" |
| 24 #include "base/strings/string16.h" | 24 #include "base/strings/string16.h" |
| 25 #include "base/timer/timer.h" | 25 #include "base/timer/timer.h" |
| 26 #include "build/build_config.h" | 26 #include "build/build_config.h" |
| 27 #include "cc/input/browser_controls_state.h" | 27 #include "cc/input/browser_controls_state.h" |
| 28 #include "cc/resources/shared_bitmap.h" | 28 #include "cc/resources/shared_bitmap.h" |
| 29 #include "content/common/content_export.h" | 29 #include "content/common/content_export.h" |
| 30 #include "content/common/frame_message_enums.h" | 30 #include "content/common/frame_message_enums.h" |
| 31 #include "content/common/navigation_gesture.h" | |
| 32 #include "content/common/page_message_enums.h" | 31 #include "content/common/page_message_enums.h" |
| 33 #include "content/common/view_message_enums.h" | 32 #include "content/common/view_message_enums.h" |
| 34 #include "content/public/common/browser_controls_state.h" | 33 #include "content/public/common/browser_controls_state.h" |
| 35 #include "content/public/common/drop_data.h" | 34 #include "content/public/common/drop_data.h" |
| 35 #include "content/public/common/navigation_gesture.h" |
| 36 #include "content/public/common/page_zoom.h" | 36 #include "content/public/common/page_zoom.h" |
| 37 #include "content/public/common/referrer.h" | 37 #include "content/public/common/referrer.h" |
| 38 #include "content/public/common/renderer_preferences.h" | 38 #include "content/public/common/renderer_preferences.h" |
| 39 #include "content/public/common/web_preferences.h" | 39 #include "content/public/common/web_preferences.h" |
| 40 #include "content/public/renderer/render_view.h" | 40 #include "content/public/renderer/render_view.h" |
| 41 #include "content/renderer/render_frame_impl.h" | 41 #include "content/renderer/render_frame_impl.h" |
| 42 #include "content/renderer/render_widget.h" | 42 #include "content/renderer/render_widget.h" |
| 43 #include "content/renderer/render_widget_owner_delegate.h" | 43 #include "content/renderer/render_widget_owner_delegate.h" |
| 44 #include "content/renderer/stats_collection_observer.h" | 44 #include "content/renderer/stats_collection_observer.h" |
| 45 #include "ipc/ipc_platform_file.h" | 45 #include "ipc/ipc_platform_file.h" |
| (...skipping 793 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 839 // use the Observer interface to filter IPC messages and receive frame change | 839 // use the Observer interface to filter IPC messages and receive frame change |
| 840 // notifications. | 840 // notifications. |
| 841 // --------------------------------------------------------------------------- | 841 // --------------------------------------------------------------------------- |
| 842 | 842 |
| 843 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 843 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 844 }; | 844 }; |
| 845 | 845 |
| 846 } // namespace content | 846 } // namespace content |
| 847 | 847 |
| 848 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 848 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |