| Index: content/public/app/content_main_delegate.cc
|
| diff --git a/content/public/app/content_main_delegate.cc b/content/public/app/content_main_delegate.cc
|
| index a16ac60dc0d2a764f677abb8653e564251856ec2..a49d7b7f28d70dc033ee1815fb2b26e353104a1f 100644
|
| --- a/content/public/app/content_main_delegate.cc
|
| +++ b/content/public/app/content_main_delegate.cc
|
| @@ -61,7 +61,8 @@ ContentPluginClient* ContentMainDelegate::CreateContentPluginClient() {
|
| }
|
|
|
| ContentRendererClient* ContentMainDelegate::CreateContentRendererClient() {
|
| -#if defined(OS_IOS)
|
| + // TODO(scottmg): http://crbug.com/237249 Need split for chrome_child.dll.
|
| +#if defined(OS_IOS) || defined(CHROME_SPLIT_DLL)
|
| return NULL;
|
| #else
|
| return new ContentRendererClient();
|
| @@ -69,7 +70,8 @@ ContentRendererClient* ContentMainDelegate::CreateContentRendererClient() {
|
| }
|
|
|
| ContentUtilityClient* ContentMainDelegate::CreateContentUtilityClient() {
|
| -#if defined(OS_IOS)
|
| + // TODO(scottmg): http://crbug.com/237249 Need split for chrome_child.dll.
|
| +#if defined(OS_IOS) || defined(CHROME_SPLIT_DLL)
|
| return NULL;
|
| #else
|
| return new ContentUtilityClient();
|
|
|