| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 #include "content/renderer/mojo/blink_interface_provider_impl.h" | 43 #include "content/renderer/mojo/blink_interface_provider_impl.h" |
| 44 #include "content/renderer/renderer_webcookiejar_impl.h" | 44 #include "content/renderer/renderer_webcookiejar_impl.h" |
| 45 #include "ipc/ipc_message.h" | 45 #include "ipc/ipc_message.h" |
| 46 #include "ipc/ipc_platform_file.h" | 46 #include "ipc/ipc_platform_file.h" |
| 47 #include "media/blink/webmediaplayer_delegate.h" | 47 #include "media/blink/webmediaplayer_delegate.h" |
| 48 #include "media/blink/webmediaplayer_params.h" | 48 #include "media/blink/webmediaplayer_params.h" |
| 49 #include "media/mojo/interfaces/remoting.mojom.h" | 49 #include "media/mojo/interfaces/remoting.mojom.h" |
| 50 #include "mojo/public/cpp/bindings/associated_binding.h" | 50 #include "mojo/public/cpp/bindings/associated_binding.h" |
| 51 #include "mojo/public/cpp/bindings/binding.h" | 51 #include "mojo/public/cpp/bindings/binding.h" |
| 52 #include "ppapi/features/features.h" | 52 #include "ppapi/features/features.h" |
| 53 #include "services/service_manager/public/cpp/service_info.h" |
| 53 #include "services/service_manager/public/interfaces/connector.mojom.h" | 54 #include "services/service_manager/public/interfaces/connector.mojom.h" |
| 54 #include "services/service_manager/public/interfaces/interface_provider.mojom.h" | 55 #include "services/service_manager/public/interfaces/interface_provider.mojom.h" |
| 55 #include "third_party/WebKit/public/platform/WebEffectiveConnectionType.h" | 56 #include "third_party/WebKit/public/platform/WebEffectiveConnectionType.h" |
| 56 #include "third_party/WebKit/public/platform/WebFeaturePolicy.h" | 57 #include "third_party/WebKit/public/platform/WebFeaturePolicy.h" |
| 57 #include "third_party/WebKit/public/platform/WebFocusType.h" | 58 #include "third_party/WebKit/public/platform/WebFocusType.h" |
| 58 #include "third_party/WebKit/public/platform/WebLoadingBehaviorFlag.h" | 59 #include "third_party/WebKit/public/platform/WebLoadingBehaviorFlag.h" |
| 59 #include "third_party/WebKit/public/platform/WebMediaPlayer.h" | 60 #include "third_party/WebKit/public/platform/WebMediaPlayer.h" |
| 60 #include "third_party/WebKit/public/platform/WebPageVisibilityState.h" | 61 #include "third_party/WebKit/public/platform/WebPageVisibilityState.h" |
| 61 #include "third_party/WebKit/public/platform/site_engagement.mojom.h" | 62 #include "third_party/WebKit/public/platform/site_engagement.mojom.h" |
| 62 #include "third_party/WebKit/public/web/WebAXObject.h" | 63 #include "third_party/WebKit/public/web/WebAXObject.h" |
| (...skipping 1328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1391 int enabled_bindings_ = 0; | 1392 int enabled_bindings_ = 0; |
| 1392 | 1393 |
| 1393 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1394 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1394 | 1395 |
| 1395 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1396 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1396 }; | 1397 }; |
| 1397 | 1398 |
| 1398 } // namespace content | 1399 } // namespace content |
| 1399 | 1400 |
| 1400 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1401 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |