Chromium Code Reviews| Index: content/renderer/renderer_webkitplatformsupport_impl.cc |
| =================================================================== |
| --- content/renderer/renderer_webkitplatformsupport_impl.cc (revision 104763) |
| +++ content/renderer/renderer_webkitplatformsupport_impl.cc (working copy) |
| @@ -603,9 +603,9 @@ |
| //------------------------------------------------------------------------------ |
| WebBlobRegistry* RendererWebKitPlatformSupportImpl::blobRegistry() { |
| - // RenderThreadImpl::current can be NULL when running some tests. |
| - if (!blob_registry_.get() && RenderThreadImpl::current()) { |
| - blob_registry_.reset(new WebBlobRegistryImpl(RenderThreadImpl::Get())); |
| + // ChildThread::current can be NULL when running some tests. |
| + if (!blob_registry_.get() && ChildThread::current()) { |
| + blob_registry_.reset(new WebBlobRegistryImpl(ChildThread::current())); |
|
michaeln
2011/10/12 01:52:55
i'll take this file out of this CL and move it to
|
| } |
| return blob_registry_.get(); |
| } |