| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 #include "third_party/WebKit/Source/WebKit/chromium/public/WebHistoryItem.h" | 48 #include "third_party/WebKit/Source/WebKit/chromium/public/WebHistoryItem.h" |
| 49 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIconURL.h" | 49 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIconURL.h" |
| 50 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" | 50 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" |
| 51 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNavigationType.h" | 51 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNavigationType.h" |
| 52 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNode.h" | 52 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNode.h" |
| 53 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPageSerializerClie
nt.h" | 53 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPageSerializerClie
nt.h" |
| 54 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPageVisibilityStat
e.h" | 54 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPageVisibilityStat
e.h" |
| 55 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityOrigin.h" | 55 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityOrigin.h" |
| 56 #include "third_party/WebKit/Source/WebKit/chromium/public/WebViewClient.h" | 56 #include "third_party/WebKit/Source/WebKit/chromium/public/WebViewClient.h" |
| 57 #include "ui/surface/transport_dib.h" | 57 #include "ui/surface/transport_dib.h" |
| 58 #include "webkit/glue/webpreferences.h" | 58 #include "webkit/common/webpreferences.h" |
| 59 #include "webkit/media/webmediaplayer_delegate.h" | 59 #include "webkit/media/webmediaplayer_delegate.h" |
| 60 #include "webkit/plugins/npapi/webplugin_page_delegate.h" | 60 #include "webkit/plugins/npapi/webplugin_page_delegate.h" |
| 61 | 61 |
| 62 #if defined(OS_ANDROID) | 62 #if defined(OS_ANDROID) |
| 63 #include "content/renderer/android/content_detector.h" | 63 #include "content/renderer/android/content_detector.h" |
| 64 #include "third_party/WebKit/Source/WebKit/chromium/public/WebContentDetectionRe
sult.h" | 64 #include "third_party/WebKit/Source/WebKit/chromium/public/WebContentDetectionRe
sult.h" |
| 65 #endif | 65 #endif |
| 66 | 66 |
| 67 #if defined(COMPILER_MSVC) | 67 #if defined(COMPILER_MSVC) |
| 68 // RenderViewImpl is a diamond-shaped hierarchy, with WebWidgetClient at the | 68 // RenderViewImpl is a diamond-shaped hierarchy, with WebWidgetClient at the |
| (...skipping 1480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1549 // use the Observer interface to filter IPC messages and receive frame change | 1549 // use the Observer interface to filter IPC messages and receive frame change |
| 1550 // notifications. | 1550 // notifications. |
| 1551 // --------------------------------------------------------------------------- | 1551 // --------------------------------------------------------------------------- |
| 1552 | 1552 |
| 1553 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1553 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1554 }; | 1554 }; |
| 1555 | 1555 |
| 1556 } // namespace content | 1556 } // namespace content |
| 1557 | 1557 |
| 1558 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1558 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |