| 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 23 matching lines...) Expand all Loading... |
| 34 #include "content/public/renderer/render_frame.h" | 34 #include "content/public/renderer/render_frame.h" |
| 35 #include "content/renderer/frame_blame_context.h" | 35 #include "content/renderer/frame_blame_context.h" |
| 36 #include "content/renderer/mojo/blink_interface_provider_impl.h" | 36 #include "content/renderer/mojo/blink_interface_provider_impl.h" |
| 37 #include "content/renderer/renderer_webcookiejar_impl.h" | 37 #include "content/renderer/renderer_webcookiejar_impl.h" |
| 38 #include "ipc/ipc_message.h" | 38 #include "ipc/ipc_message.h" |
| 39 #include "ipc/ipc_platform_file.h" | 39 #include "ipc/ipc_platform_file.h" |
| 40 #include "media/blink/webmediaplayer_delegate.h" | 40 #include "media/blink/webmediaplayer_delegate.h" |
| 41 #include "media/blink/webmediaplayer_params.h" | 41 #include "media/blink/webmediaplayer_params.h" |
| 42 #include "media/mojo/interfaces/remoting.mojom.h" | 42 #include "media/mojo/interfaces/remoting.mojom.h" |
| 43 #include "mojo/public/cpp/bindings/binding.h" | 43 #include "mojo/public/cpp/bindings/binding.h" |
| 44 #include "services/shell/public/interfaces/connector.mojom.h" | 44 #include "services/service_manager/public/interfaces/connector.mojom.h" |
| 45 #include "services/shell/public/interfaces/interface_provider.mojom.h" | 45 #include "services/service_manager/public/interfaces/interface_provider.mojom.h" |
| 46 #include "third_party/WebKit/public/platform/WebEffectiveConnectionType.h" | 46 #include "third_party/WebKit/public/platform/WebEffectiveConnectionType.h" |
| 47 #include "third_party/WebKit/public/platform/WebFocusType.h" | 47 #include "third_party/WebKit/public/platform/WebFocusType.h" |
| 48 #include "third_party/WebKit/public/platform/WebLoadingBehaviorFlag.h" | 48 #include "third_party/WebKit/public/platform/WebLoadingBehaviorFlag.h" |
| 49 #include "third_party/WebKit/public/platform/WebMediaPlayer.h" | 49 #include "third_party/WebKit/public/platform/WebMediaPlayer.h" |
| 50 #include "third_party/WebKit/public/platform/WebPageVisibilityState.h" | 50 #include "third_party/WebKit/public/platform/WebPageVisibilityState.h" |
| 51 #include "third_party/WebKit/public/platform/modules/app_banner/WebAppBannerClie
nt.h" | 51 #include "third_party/WebKit/public/platform/modules/app_banner/WebAppBannerClie
nt.h" |
| 52 #include "third_party/WebKit/public/web/WebAXObject.h" | 52 #include "third_party/WebKit/public/web/WebAXObject.h" |
| 53 #include "third_party/WebKit/public/web/WebDataSource.h" | 53 #include "third_party/WebKit/public/web/WebDataSource.h" |
| 54 #include "third_party/WebKit/public/web/WebFrameClient.h" | 54 #include "third_party/WebKit/public/web/WebFrameClient.h" |
| 55 #include "third_party/WebKit/public/web/WebFrameLoadType.h" | 55 #include "third_party/WebKit/public/web/WebFrameLoadType.h" |
| (...skipping 1270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1326 bool name_changed_before_first_commit_ = false; | 1326 bool name_changed_before_first_commit_ = false; |
| 1327 | 1327 |
| 1328 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1328 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1329 | 1329 |
| 1330 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1330 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1331 }; | 1331 }; |
| 1332 | 1332 |
| 1333 } // namespace content | 1333 } // namespace content |
| 1334 | 1334 |
| 1335 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1335 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |