Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(473)

Unified Diff: content/renderer/renderer_webkitplatformsupport_impl.cc

Issue 8229039: Make shared memory allocation possible for all child process types. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/renderer_glue.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
}
« no previous file with comments | « content/renderer/renderer_glue.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698