| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 #include "ipc/ipc_platform_file.h" | 44 #include "ipc/ipc_platform_file.h" |
| 45 #include "third_party/WebKit/public/platform/WebInputEvent.h" | 45 #include "third_party/WebKit/public/platform/WebInputEvent.h" |
| 46 #include "third_party/WebKit/public/platform/WebSecurityOrigin.h" | 46 #include "third_party/WebKit/public/platform/WebSecurityOrigin.h" |
| 47 #include "third_party/WebKit/public/web/WebAXObject.h" | 47 #include "third_party/WebKit/public/web/WebAXObject.h" |
| 48 #include "third_party/WebKit/public/web/WebConsoleMessage.h" | 48 #include "third_party/WebKit/public/web/WebConsoleMessage.h" |
| 49 #include "third_party/WebKit/public/web/WebDataSource.h" | 49 #include "third_party/WebKit/public/web/WebDataSource.h" |
| 50 #include "third_party/WebKit/public/web/WebElement.h" | 50 #include "third_party/WebKit/public/web/WebElement.h" |
| 51 #include "third_party/WebKit/public/web/WebFrameWidget.h" | 51 #include "third_party/WebKit/public/web/WebFrameWidget.h" |
| 52 #include "third_party/WebKit/public/web/WebHistoryItem.h" | 52 #include "third_party/WebKit/public/web/WebHistoryItem.h" |
| 53 #include "third_party/WebKit/public/web/WebIconURL.h" | 53 #include "third_party/WebKit/public/web/WebIconURL.h" |
| 54 #include "third_party/WebKit/public/web/WebNavigationType.h" | |
| 55 #include "third_party/WebKit/public/web/WebNode.h" | 54 #include "third_party/WebKit/public/web/WebNode.h" |
| 56 #include "third_party/WebKit/public/web/WebViewClient.h" | 55 #include "third_party/WebKit/public/web/WebViewClient.h" |
| 57 #include "ui/base/window_open_disposition.h" | 56 #include "ui/base/window_open_disposition.h" |
| 58 #include "ui/gfx/geometry/rect.h" | 57 #include "ui/gfx/geometry/rect.h" |
| 59 #include "ui/gfx/geometry/rect_f.h" | 58 #include "ui/gfx/geometry/rect_f.h" |
| 60 #include "ui/surface/transport_dib.h" | 59 #include "ui/surface/transport_dib.h" |
| 61 | 60 |
| 62 #if defined(OS_ANDROID) | 61 #if defined(OS_ANDROID) |
| 63 #include "content/renderer/android/content_detector.h" | 62 #include "content/renderer/android/content_detector.h" |
| 64 #include "content/renderer/android/renderer_date_time_picker.h" | 63 #include "content/renderer/android/renderer_date_time_picker.h" |
| (...skipping 772 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 837 // --------------------------------------------------------------------------- | 836 // --------------------------------------------------------------------------- |
| 838 | 837 |
| 839 base::WeakPtrFactory<RenderViewImpl> weak_ptr_factory_; | 838 base::WeakPtrFactory<RenderViewImpl> weak_ptr_factory_; |
| 840 | 839 |
| 841 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 840 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 842 }; | 841 }; |
| 843 | 842 |
| 844 } // namespace content | 843 } // namespace content |
| 845 | 844 |
| 846 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 845 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |