| 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 21 matching lines...) Expand all Loading... |
| 32 #include "content/public/common/referrer.h" | 32 #include "content/public/common/referrer.h" |
| 33 #include "content/public/common/renderer_preferences.h" | 33 #include "content/public/common/renderer_preferences.h" |
| 34 #include "content/public/common/stop_find_action.h" | 34 #include "content/public/common/stop_find_action.h" |
| 35 #include "content/public/common/top_controls_state.h" | 35 #include "content/public/common/top_controls_state.h" |
| 36 #include "content/public/renderer/render_view.h" | 36 #include "content/public/renderer/render_view.h" |
| 37 #include "content/renderer/mouse_lock_dispatcher.h" | 37 #include "content/renderer/mouse_lock_dispatcher.h" |
| 38 #include "content/renderer/render_view_pepper_helper.h" | 38 #include "content/renderer/render_view_pepper_helper.h" |
| 39 #include "content/renderer/render_widget.h" | 39 #include "content/renderer/render_widget.h" |
| 40 #include "content/renderer/renderer_webcookiejar_impl.h" | 40 #include "content/renderer/renderer_webcookiejar_impl.h" |
| 41 #include "ipc/ipc_platform_file.h" | 41 #include "ipc/ipc_platform_file.h" |
| 42 #include "third_party/WebKit/Source/Platform/chromium/public/WebFileSystem.h" | 42 #include "third_party/WebKit/public/platform/WebFileSystem.h" |
| 43 #include "third_party/WebKit/Source/Platform/chromium/public/WebGraphicsContext3
D.h" | 43 #include "third_party/WebKit/public/platform/WebGraphicsContext3D.h" |
| 44 #include "third_party/WebKit/Source/WebKit/chromium/public/WebConsoleMessage.h" | 44 #include "third_party/WebKit/Source/WebKit/chromium/public/WebConsoleMessage.h" |
| 45 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h" | 45 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h" |
| 46 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrameClient.h" | 46 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrameClient.h" |
| 47 #include "third_party/WebKit/Source/WebKit/chromium/public/WebHistoryItem.h" | 47 #include "third_party/WebKit/Source/WebKit/chromium/public/WebHistoryItem.h" |
| 48 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIconURL.h" | 48 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIconURL.h" |
| 49 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" | 49 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" |
| 50 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNavigationType.h" | 50 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNavigationType.h" |
| 51 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNode.h" | 51 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNode.h" |
| 52 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPageSerializerClie
nt.h" | 52 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPageSerializerClie
nt.h" |
| 53 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPageVisibilityStat
e.h" | 53 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPageVisibilityStat
e.h" |
| (...skipping 1480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1534 // use the Observer interface to filter IPC messages and receive frame change | 1534 // use the Observer interface to filter IPC messages and receive frame change |
| 1535 // notifications. | 1535 // notifications. |
| 1536 // --------------------------------------------------------------------------- | 1536 // --------------------------------------------------------------------------- |
| 1537 | 1537 |
| 1538 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1538 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1539 }; | 1539 }; |
| 1540 | 1540 |
| 1541 } // namespace content | 1541 } // namespace content |
| 1542 | 1542 |
| 1543 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1543 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |