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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 #include "gpu/GLES2/gl2extchromium.h" | 116 #include "gpu/GLES2/gl2extchromium.h" |
117 #include "gpu/command_buffer/common/gles2_cmd_utils.h" | 117 #include "gpu/command_buffer/common/gles2_cmd_utils.h" |
118 #include "ipc/ipc_channel_handle.h" | 118 #include "ipc/ipc_channel_handle.h" |
119 #include "ipc/ipc_platform_file.h" | 119 #include "ipc/ipc_platform_file.h" |
120 #include "ipc/mojo/ipc_channel_mojo.h" | 120 #include "ipc/mojo/ipc_channel_mojo.h" |
121 #include "media/base/audio_hardware_config.h" | 121 #include "media/base/audio_hardware_config.h" |
122 #include "media/base/media.h" | 122 #include "media/base/media.h" |
123 #include "media/renderers/gpu_video_accelerator_factories.h" | 123 #include "media/renderers/gpu_video_accelerator_factories.h" |
124 #include "mojo/common/common_type_converters.h" | 124 #include "mojo/common/common_type_converters.h" |
125 #include "net/base/net_errors.h" | 125 #include "net/base/net_errors.h" |
126 #include "net/base/net_util.h" | 126 #include "net/base/port_util.h" |
127 #include "skia/ext/event_tracer_impl.h" | 127 #include "skia/ext/event_tracer_impl.h" |
128 #include "third_party/WebKit/public/platform/WebString.h" | 128 #include "third_party/WebKit/public/platform/WebString.h" |
129 #include "third_party/WebKit/public/platform/WebThread.h" | 129 #include "third_party/WebKit/public/platform/WebThread.h" |
130 #include "third_party/WebKit/public/web/WebCache.h" | 130 #include "third_party/WebKit/public/web/WebCache.h" |
131 #include "third_party/WebKit/public/web/WebColorName.h" | 131 #include "third_party/WebKit/public/web/WebColorName.h" |
132 #include "third_party/WebKit/public/web/WebDatabase.h" | 132 #include "third_party/WebKit/public/web/WebDatabase.h" |
133 #include "third_party/WebKit/public/web/WebDocument.h" | 133 #include "third_party/WebKit/public/web/WebDocument.h" |
134 #include "third_party/WebKit/public/web/WebFrame.h" | 134 #include "third_party/WebKit/public/web/WebFrame.h" |
135 #include "third_party/WebKit/public/web/WebImageCache.h" | 135 #include "third_party/WebKit/public/web/WebImageCache.h" |
136 #include "third_party/WebKit/public/web/WebKit.h" | 136 #include "third_party/WebKit/public/web/WebKit.h" |
(...skipping 1858 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1995 } | 1995 } |
1996 | 1996 |
1997 void RenderThreadImpl::PendingRenderFrameConnect::OnConnectionError() { | 1997 void RenderThreadImpl::PendingRenderFrameConnect::OnConnectionError() { |
1998 size_t erased = | 1998 size_t erased = |
1999 RenderThreadImpl::current()->pending_render_frame_connects_.erase( | 1999 RenderThreadImpl::current()->pending_render_frame_connects_.erase( |
2000 routing_id_); | 2000 routing_id_); |
2001 DCHECK_EQ(1u, erased); | 2001 DCHECK_EQ(1u, erased); |
2002 } | 2002 } |
2003 | 2003 |
2004 } // namespace content | 2004 } // namespace content |
OLD | NEW |