| 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 <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #include "ipc/ipc_message.h" | 27 #include "ipc/ipc_message.h" |
| 28 #include "media/blink/webmediaplayer_delegate.h" | 28 #include "media/blink/webmediaplayer_delegate.h" |
| 29 #include "media/blink/webmediaplayer_params.h" | 29 #include "media/blink/webmediaplayer_params.h" |
| 30 #include "mojo/application/public/interfaces/service_provider.mojom.h" | 30 #include "mojo/application/public/interfaces/service_provider.mojom.h" |
| 31 #include "mojo/application/public/interfaces/shell.mojom.h" | 31 #include "mojo/application/public/interfaces/shell.mojom.h" |
| 32 #include "third_party/WebKit/public/platform/modules/app_banner/WebAppBannerClie
nt.h" | 32 #include "third_party/WebKit/public/platform/modules/app_banner/WebAppBannerClie
nt.h" |
| 33 #include "third_party/WebKit/public/web/WebAXObject.h" | 33 #include "third_party/WebKit/public/web/WebAXObject.h" |
| 34 #include "third_party/WebKit/public/web/WebDataSource.h" | 34 #include "third_party/WebKit/public/web/WebDataSource.h" |
| 35 #include "third_party/WebKit/public/web/WebFrameClient.h" | 35 #include "third_party/WebKit/public/web/WebFrameClient.h" |
| 36 #include "third_party/WebKit/public/web/WebHistoryCommitType.h" | 36 #include "third_party/WebKit/public/web/WebHistoryCommitType.h" |
| 37 #include "third_party/WebKit/public/web/WebMeaningfulLayout.h" |
| 37 #include "third_party/WebKit/public/web/WebPageSerializerClient.h" | 38 #include "third_party/WebKit/public/web/WebPageSerializerClient.h" |
| 38 #include "third_party/WebKit/public/web/WebScriptExecutionCallback.h" | 39 #include "third_party/WebKit/public/web/WebScriptExecutionCallback.h" |
| 39 #include "ui/gfx/range/range.h" | 40 #include "ui/gfx/range/range.h" |
| 40 | 41 |
| 41 #if defined(ENABLE_PLUGINS) | 42 #if defined(ENABLE_PLUGINS) |
| 42 #include "content/renderer/pepper/plugin_power_saver_helper.h" | 43 #include "content/renderer/pepper/plugin_power_saver_helper.h" |
| 43 #endif | 44 #endif |
| 44 | 45 |
| 45 #if defined(OS_ANDROID) | 46 #if defined(OS_ANDROID) |
| 46 #include "content/renderer/media/android/renderer_media_player_manager.h" | 47 #include "content/renderer/media/android/renderer_media_player_manager.h" |
| (...skipping 1019 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1066 #endif | 1067 #endif |
| 1067 | 1068 |
| 1068 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1069 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1069 | 1070 |
| 1070 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1071 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1071 }; | 1072 }; |
| 1072 | 1073 |
| 1073 } // namespace content | 1074 } // namespace content |
| 1074 | 1075 |
| 1075 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1076 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |