| 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 28 matching lines...) Expand all Loading... |
| 39 #include "content/public/common/renderer_preferences.h" | 39 #include "content/public/common/renderer_preferences.h" |
| 40 #include "content/public/common/top_controls_state.h" | 40 #include "content/public/common/top_controls_state.h" |
| 41 #include "content/public/common/web_preferences.h" | 41 #include "content/public/common/web_preferences.h" |
| 42 #include "content/public/renderer/render_view.h" | 42 #include "content/public/renderer/render_view.h" |
| 43 #include "content/renderer/mouse_lock_dispatcher.h" | 43 #include "content/renderer/mouse_lock_dispatcher.h" |
| 44 #include "content/renderer/render_frame_impl.h" | 44 #include "content/renderer/render_frame_impl.h" |
| 45 #include "content/renderer/render_widget.h" | 45 #include "content/renderer/render_widget.h" |
| 46 #include "content/renderer/render_widget_owner_delegate.h" | 46 #include "content/renderer/render_widget_owner_delegate.h" |
| 47 #include "content/renderer/stats_collection_observer.h" | 47 #include "content/renderer/stats_collection_observer.h" |
| 48 #include "ipc/ipc_platform_file.h" | 48 #include "ipc/ipc_platform_file.h" |
| 49 #include "third_party/WebKit/public/platform/WebGraphicsContext3D.h" | |
| 50 #include "third_party/WebKit/public/platform/WebPageVisibilityState.h" | 49 #include "third_party/WebKit/public/platform/WebPageVisibilityState.h" |
| 51 #include "third_party/WebKit/public/platform/WebSecurityOrigin.h" | 50 #include "third_party/WebKit/public/platform/WebSecurityOrigin.h" |
| 52 #include "third_party/WebKit/public/web/WebAXObject.h" | 51 #include "third_party/WebKit/public/web/WebAXObject.h" |
| 53 #include "third_party/WebKit/public/web/WebConsoleMessage.h" | 52 #include "third_party/WebKit/public/web/WebConsoleMessage.h" |
| 54 #include "third_party/WebKit/public/web/WebDataSource.h" | 53 #include "third_party/WebKit/public/web/WebDataSource.h" |
| 55 #include "third_party/WebKit/public/web/WebElement.h" | 54 #include "third_party/WebKit/public/web/WebElement.h" |
| 56 #include "third_party/WebKit/public/web/WebFrameWidget.h" | 55 #include "third_party/WebKit/public/web/WebFrameWidget.h" |
| 57 #include "third_party/WebKit/public/web/WebHistoryItem.h" | 56 #include "third_party/WebKit/public/web/WebHistoryItem.h" |
| 58 #include "third_party/WebKit/public/web/WebIconURL.h" | 57 #include "third_party/WebKit/public/web/WebIconURL.h" |
| 59 #include "third_party/WebKit/public/web/WebInputEvent.h" | 58 #include "third_party/WebKit/public/web/WebInputEvent.h" |
| (...skipping 965 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1025 // use the Observer interface to filter IPC messages and receive frame change | 1024 // use the Observer interface to filter IPC messages and receive frame change |
| 1026 // notifications. | 1025 // notifications. |
| 1027 // --------------------------------------------------------------------------- | 1026 // --------------------------------------------------------------------------- |
| 1028 | 1027 |
| 1029 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1028 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1030 }; | 1029 }; |
| 1031 | 1030 |
| 1032 } // namespace content | 1031 } // namespace content |
| 1033 | 1032 |
| 1034 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1033 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |