| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "content/renderer/render_thread_impl.h" | 5 #include "content/renderer/render_thread_impl.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <limits> | 8 #include <limits> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 #include "content/renderer/service_worker/embedded_worker_dispatcher.h" | 109 #include "content/renderer/service_worker/embedded_worker_dispatcher.h" |
| 110 #include "content/renderer/shared_worker/embedded_shared_worker_stub.h" | 110 #include "content/renderer/shared_worker/embedded_shared_worker_stub.h" |
| 111 #include "gin/public/debug.h" | 111 #include "gin/public/debug.h" |
| 112 #include "gpu/GLES2/gl2extchromium.h" | 112 #include "gpu/GLES2/gl2extchromium.h" |
| 113 #include "gpu/command_buffer/common/gles2_cmd_utils.h" | 113 #include "gpu/command_buffer/common/gles2_cmd_utils.h" |
| 114 #include "ipc/ipc_channel_handle.h" | 114 #include "ipc/ipc_channel_handle.h" |
| 115 #include "ipc/ipc_platform_file.h" | 115 #include "ipc/ipc_platform_file.h" |
| 116 #include "ipc/mojo/ipc_channel_mojo.h" | 116 #include "ipc/mojo/ipc_channel_mojo.h" |
| 117 #include "media/base/audio_hardware_config.h" | 117 #include "media/base/audio_hardware_config.h" |
| 118 #include "media/base/media.h" | 118 #include "media/base/media.h" |
| 119 #include "media/filters/gpu_video_accelerator_factories.h" | 119 #include "media/renderers/gpu_video_accelerator_factories.h" |
| 120 #include "mojo/common/common_type_converters.h" | 120 #include "mojo/common/common_type_converters.h" |
| 121 #include "net/base/net_errors.h" | 121 #include "net/base/net_errors.h" |
| 122 #include "net/base/net_util.h" | 122 #include "net/base/net_util.h" |
| 123 #include "skia/ext/event_tracer_impl.h" | 123 #include "skia/ext/event_tracer_impl.h" |
| 124 #include "third_party/WebKit/public/platform/WebString.h" | 124 #include "third_party/WebKit/public/platform/WebString.h" |
| 125 #include "third_party/WebKit/public/platform/WebThread.h" | 125 #include "third_party/WebKit/public/platform/WebThread.h" |
| 126 #include "third_party/WebKit/public/web/WebCache.h" | 126 #include "third_party/WebKit/public/web/WebCache.h" |
| 127 #include "third_party/WebKit/public/web/WebColorName.h" | 127 #include "third_party/WebKit/public/web/WebColorName.h" |
| 128 #include "third_party/WebKit/public/web/WebDatabase.h" | 128 #include "third_party/WebKit/public/web/WebDatabase.h" |
| 129 #include "third_party/WebKit/public/web/WebDocument.h" | 129 #include "third_party/WebKit/public/web/WebDocument.h" |
| (...skipping 1689 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1819 mojo::InterfaceRequest<mojo::ServiceProvider> services, | 1819 mojo::InterfaceRequest<mojo::ServiceProvider> services, |
| 1820 mojo::ServiceProviderPtr exposed_services) | 1820 mojo::ServiceProviderPtr exposed_services) |
| 1821 : services(services.Pass()), | 1821 : services(services.Pass()), |
| 1822 exposed_services(exposed_services.Pass()) { | 1822 exposed_services(exposed_services.Pass()) { |
| 1823 } | 1823 } |
| 1824 | 1824 |
| 1825 RenderThreadImpl::PendingRenderFrameConnect::~PendingRenderFrameConnect() { | 1825 RenderThreadImpl::PendingRenderFrameConnect::~PendingRenderFrameConnect() { |
| 1826 } | 1826 } |
| 1827 | 1827 |
| 1828 } // namespace content | 1828 } // namespace content |
| OLD | NEW |