| 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 26 matching lines...) Expand all Loading... |
| 37 #include "content/public/common/stop_find_action.h" | 37 #include "content/public/common/stop_find_action.h" |
| 38 #include "content/public/common/top_controls_state.h" | 38 #include "content/public/common/top_controls_state.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/mouse_lock_dispatcher.h" | 41 #include "content/renderer/mouse_lock_dispatcher.h" |
| 42 #include "content/renderer/render_frame_impl.h" | 42 #include "content/renderer/render_frame_impl.h" |
| 43 #include "content/renderer/render_widget.h" | 43 #include "content/renderer/render_widget.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" |
| 46 #include "third_party/WebKit/public/platform/WebGraphicsContext3D.h" | 46 #include "third_party/WebKit/public/platform/WebGraphicsContext3D.h" |
| 47 #include "third_party/WebKit/public/platform/WebPageVisibilityState.h" |
| 47 #include "third_party/WebKit/public/web/WebAXObject.h" | 48 #include "third_party/WebKit/public/web/WebAXObject.h" |
| 48 #include "third_party/WebKit/public/web/WebConsoleMessage.h" | 49 #include "third_party/WebKit/public/web/WebConsoleMessage.h" |
| 49 #include "third_party/WebKit/public/web/WebDataSource.h" | 50 #include "third_party/WebKit/public/web/WebDataSource.h" |
| 50 #include "third_party/WebKit/public/web/WebElement.h" | 51 #include "third_party/WebKit/public/web/WebElement.h" |
| 51 #include "third_party/WebKit/public/web/WebHistoryItem.h" | 52 #include "third_party/WebKit/public/web/WebHistoryItem.h" |
| 52 #include "third_party/WebKit/public/web/WebIconURL.h" | 53 #include "third_party/WebKit/public/web/WebIconURL.h" |
| 53 #include "third_party/WebKit/public/web/WebInputEvent.h" | 54 #include "third_party/WebKit/public/web/WebInputEvent.h" |
| 54 #include "third_party/WebKit/public/web/WebNavigationType.h" | 55 #include "third_party/WebKit/public/web/WebNavigationType.h" |
| 55 #include "third_party/WebKit/public/web/WebNode.h" | 56 #include "third_party/WebKit/public/web/WebNode.h" |
| 56 #include "third_party/WebKit/public/web/WebPageSerializerClient.h" | 57 #include "third_party/WebKit/public/web/WebPageSerializerClient.h" |
| 57 #include "third_party/WebKit/public/web/WebPageVisibilityState.h" | |
| 58 #include "third_party/WebKit/public/web/WebSecurityOrigin.h" | 58 #include "third_party/WebKit/public/web/WebSecurityOrigin.h" |
| 59 #include "third_party/WebKit/public/web/WebViewClient.h" | 59 #include "third_party/WebKit/public/web/WebViewClient.h" |
| 60 #include "ui/base/window_open_disposition.h" | 60 #include "ui/base/window_open_disposition.h" |
| 61 #include "ui/surface/transport_dib.h" | 61 #include "ui/surface/transport_dib.h" |
| 62 | 62 |
| 63 #if defined(OS_ANDROID) | 63 #if defined(OS_ANDROID) |
| 64 #include "content/renderer/android/content_detector.h" | 64 #include "content/renderer/android/content_detector.h" |
| 65 #include "content/renderer/android/renderer_date_time_picker.h" | 65 #include "content/renderer/android/renderer_date_time_picker.h" |
| 66 #include "third_party/WebKit/public/web/WebContentDetectionResult.h" | 66 #include "third_party/WebKit/public/web/WebContentDetectionResult.h" |
| 67 #endif | 67 #endif |
| (...skipping 994 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1062 // use the Observer interface to filter IPC messages and receive frame change | 1062 // use the Observer interface to filter IPC messages and receive frame change |
| 1063 // notifications. | 1063 // notifications. |
| 1064 // --------------------------------------------------------------------------- | 1064 // --------------------------------------------------------------------------- |
| 1065 | 1065 |
| 1066 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1066 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1067 }; | 1067 }; |
| 1068 | 1068 |
| 1069 } // namespace content | 1069 } // namespace content |
| 1070 | 1070 |
| 1071 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1071 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |