Chromium Code Reviews| 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 14 matching lines...) Expand all Loading... | |
| 25 #include "content/common/frame_message_enums.h" | 25 #include "content/common/frame_message_enums.h" |
| 26 #include "content/common/mojo/service_registry_impl.h" | 26 #include "content/common/mojo/service_registry_impl.h" |
| 27 #include "content/public/common/console_message_level.h" | 27 #include "content/public/common/console_message_level.h" |
| 28 #include "content/public/common/javascript_message_type.h" | 28 #include "content/public/common/javascript_message_type.h" |
| 29 #include "content/public/common/referrer.h" | 29 #include "content/public/common/referrer.h" |
| 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/render_frame_proxy.h" | 32 #include "content/renderer/render_frame_proxy.h" |
| 33 #include "content/renderer/renderer_webcookiejar_impl.h" | 33 #include "content/renderer/renderer_webcookiejar_impl.h" |
| 34 #include "ipc/ipc_message.h" | 34 #include "ipc/ipc_message.h" |
| 35 #include "ipc/ipc_message_macros.h" | |
|
nasko
2016/02/11 18:21:28
This shouldn't be needed.
lfg
2016/02/11 20:26:09
Done.
| |
| 35 #include "ipc/ipc_platform_file.h" | 36 #include "ipc/ipc_platform_file.h" |
| 36 #include "media/blink/webmediaplayer_delegate.h" | 37 #include "media/blink/webmediaplayer_delegate.h" |
| 37 #include "media/blink/webmediaplayer_params.h" | 38 #include "media/blink/webmediaplayer_params.h" |
| 38 #include "mojo/shell/public/interfaces/service_provider.mojom.h" | 39 #include "mojo/shell/public/interfaces/service_provider.mojom.h" |
| 39 #include "mojo/shell/public/interfaces/shell.mojom.h" | 40 #include "mojo/shell/public/interfaces/shell.mojom.h" |
| 40 #include "third_party/WebKit/public/platform/WebFocusType.h" | 41 #include "third_party/WebKit/public/platform/WebFocusType.h" |
| 41 #include "third_party/WebKit/public/platform/WebMediaPlayer.h" | 42 #include "third_party/WebKit/public/platform/WebMediaPlayer.h" |
| 42 #include "third_party/WebKit/public/platform/modules/app_banner/WebAppBannerClie nt.h" | 43 #include "third_party/WebKit/public/platform/modules/app_banner/WebAppBannerClie nt.h" |
| 43 #include "third_party/WebKit/public/web/WebAXObject.h" | 44 #include "third_party/WebKit/public/web/WebAXObject.h" |
| 44 #include "third_party/WebKit/public/web/WebDataSource.h" | 45 #include "third_party/WebKit/public/web/WebDataSource.h" |
| (...skipping 1162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1207 #endif | 1208 #endif |
| 1208 | 1209 |
| 1209 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1210 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1210 | 1211 |
| 1211 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1212 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1212 }; | 1213 }; |
| 1213 | 1214 |
| 1214 } // namespace content | 1215 } // namespace content |
| 1215 | 1216 |
| 1216 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1217 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |