| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_FRAME_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 #include "content/public/common/stop_find_action.h" | 30 #include "content/public/common/stop_find_action.h" |
| 31 #include "content/public/renderer/render_frame.h" | 31 #include "content/public/renderer/render_frame.h" |
| 32 #include "content/renderer/frame_blame_context.h" | 32 #include "content/renderer/frame_blame_context.h" |
| 33 #include "content/renderer/mojo/blink_service_registry_impl.h" | 33 #include "content/renderer/mojo/blink_service_registry_impl.h" |
| 34 #include "content/renderer/render_frame_proxy.h" | 34 #include "content/renderer/render_frame_proxy.h" |
| 35 #include "content/renderer/renderer_webcookiejar_impl.h" | 35 #include "content/renderer/renderer_webcookiejar_impl.h" |
| 36 #include "ipc/ipc_message.h" | 36 #include "ipc/ipc_message.h" |
| 37 #include "ipc/ipc_platform_file.h" | 37 #include "ipc/ipc_platform_file.h" |
| 38 #include "media/blink/webmediaplayer_delegate.h" | 38 #include "media/blink/webmediaplayer_delegate.h" |
| 39 #include "media/blink/webmediaplayer_params.h" | 39 #include "media/blink/webmediaplayer_params.h" |
| 40 #include "mojo/shell/public/interfaces/connector.mojom.h" | 40 #include "services/shell/public/interfaces/connector.mojom.h" |
| 41 #include "mojo/shell/public/interfaces/interface_provider.mojom.h" | 41 #include "services/shell/public/interfaces/interface_provider.mojom.h" |
| 42 #include "third_party/WebKit/public/platform/WebFocusType.h" | 42 #include "third_party/WebKit/public/platform/WebFocusType.h" |
| 43 #include "third_party/WebKit/public/platform/WebLoadingBehaviorFlag.h" | 43 #include "third_party/WebKit/public/platform/WebLoadingBehaviorFlag.h" |
| 44 #include "third_party/WebKit/public/platform/WebMediaPlayer.h" | 44 #include "third_party/WebKit/public/platform/WebMediaPlayer.h" |
| 45 #include "third_party/WebKit/public/platform/modules/app_banner/WebAppBannerClie
nt.h" | 45 #include "third_party/WebKit/public/platform/modules/app_banner/WebAppBannerClie
nt.h" |
| 46 #include "third_party/WebKit/public/web/WebAXObject.h" | 46 #include "third_party/WebKit/public/web/WebAXObject.h" |
| 47 #include "third_party/WebKit/public/web/WebDataSource.h" | 47 #include "third_party/WebKit/public/web/WebDataSource.h" |
| 48 #include "third_party/WebKit/public/web/WebFrameClient.h" | 48 #include "third_party/WebKit/public/web/WebFrameClient.h" |
| 49 #include "third_party/WebKit/public/web/WebFrameLoadType.h" | 49 #include "third_party/WebKit/public/web/WebFrameLoadType.h" |
| 50 #include "third_party/WebKit/public/web/WebFrameOwnerProperties.h" | 50 #include "third_party/WebKit/public/web/WebFrameOwnerProperties.h" |
| 51 #include "third_party/WebKit/public/web/WebFrameSerializerClient.h" | 51 #include "third_party/WebKit/public/web/WebFrameSerializerClient.h" |
| (...skipping 1177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1229 FrameBlameContext* blame_context_; // Not owned. | 1229 FrameBlameContext* blame_context_; // Not owned. |
| 1230 | 1230 |
| 1231 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1231 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1232 | 1232 |
| 1233 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1233 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1234 }; | 1234 }; |
| 1235 | 1235 |
| 1236 } // namespace content | 1236 } // namespace content |
| 1237 | 1237 |
| 1238 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1238 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |