| 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> |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 struct WebPoint; | 112 struct WebPoint; |
| 113 struct WebWindowFeatures; | 113 struct WebWindowFeatures; |
| 114 | 114 |
| 115 #if defined(OS_ANDROID) | 115 #if defined(OS_ANDROID) |
| 116 class WebHitTestResult; | 116 class WebHitTestResult; |
| 117 #endif | 117 #endif |
| 118 } // namespace blink | 118 } // namespace blink |
| 119 | 119 |
| 120 namespace content { | 120 namespace content { |
| 121 | 121 |
| 122 class DevToolsAgent; | |
| 123 class HistoryController; | 122 class HistoryController; |
| 124 class HistoryEntry; | 123 class HistoryEntry; |
| 125 class MouseLockDispatcher; | 124 class MouseLockDispatcher; |
| 126 class PageState; | 125 class PageState; |
| 127 class PepperPluginInstanceImpl; | 126 class PepperPluginInstanceImpl; |
| 128 class RenderViewImplTest; | 127 class RenderViewImplTest; |
| 129 class RenderViewObserver; | 128 class RenderViewObserver; |
| 130 class RenderViewTest; | 129 class RenderViewTest; |
| 131 class RendererDateTimePicker; | 130 class RendererDateTimePicker; |
| 132 class RendererWebColorChooserImpl; | 131 class RendererWebColorChooserImpl; |
| (...skipping 768 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 901 scoped_ptr<RenderFrameImpl> main_render_frame_; | 900 scoped_ptr<RenderFrameImpl> main_render_frame_; |
| 902 | 901 |
| 903 // The next group of objects all implement RenderViewObserver, so are deleted | 902 // The next group of objects all implement RenderViewObserver, so are deleted |
| 904 // along with the RenderView automatically. This is why we just store | 903 // along with the RenderView automatically. This is why we just store |
| 905 // weak references. | 904 // weak references. |
| 906 | 905 |
| 907 // The speech recognition dispatcher attached to this view, lazily | 906 // The speech recognition dispatcher attached to this view, lazily |
| 908 // initialized. | 907 // initialized. |
| 909 SpeechRecognitionDispatcher* speech_recognition_dispatcher_; | 908 SpeechRecognitionDispatcher* speech_recognition_dispatcher_; |
| 910 | 909 |
| 911 DevToolsAgent* devtools_agent_; | |
| 912 | |
| 913 // Mouse Lock dispatcher attached to this view. | 910 // Mouse Lock dispatcher attached to this view. |
| 914 MouseLockDispatcher* mouse_lock_dispatcher_; | 911 MouseLockDispatcher* mouse_lock_dispatcher_; |
| 915 | 912 |
| 916 scoped_ptr<HistoryController> history_controller_; | 913 scoped_ptr<HistoryController> history_controller_; |
| 917 | 914 |
| 918 #if defined(OS_ANDROID) | 915 #if defined(OS_ANDROID) |
| 919 // Android Specific --------------------------------------------------------- | 916 // Android Specific --------------------------------------------------------- |
| 920 | 917 |
| 921 // Expected id of the next content intent launched. Used to prevent scheduled | 918 // Expected id of the next content intent launched. Used to prevent scheduled |
| 922 // intents to be launched if aborted. | 919 // intents to be launched if aborted. |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1014 // use the Observer interface to filter IPC messages and receive frame change | 1011 // use the Observer interface to filter IPC messages and receive frame change |
| 1015 // notifications. | 1012 // notifications. |
| 1016 // --------------------------------------------------------------------------- | 1013 // --------------------------------------------------------------------------- |
| 1017 | 1014 |
| 1018 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1015 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1019 }; | 1016 }; |
| 1020 | 1017 |
| 1021 } // namespace content | 1018 } // namespace content |
| 1022 | 1019 |
| 1023 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1020 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |