| Index: chrome/browser/profiles/off_the_record_profile_impl.cc
|
| diff --git a/chrome/browser/profiles/off_the_record_profile_impl.cc b/chrome/browser/profiles/off_the_record_profile_impl.cc
|
| index 7612d381701a55ba481acd71d89d57ce70c3c872..dfcef82b4ffaef43da1ab34f0068031e73e33ae9 100644
|
| --- a/chrome/browser/profiles/off_the_record_profile_impl.cc
|
| +++ b/chrome/browser/profiles/off_the_record_profile_impl.cc
|
| @@ -138,11 +138,6 @@ void OffTheRecordProfileImpl::Init() {
|
|
|
| InitHostZoomMap();
|
|
|
| - // Make the chrome//extension-icon/ resource available.
|
| - extensions::ExtensionIconSource* icon_source =
|
| - new extensions::ExtensionIconSource(profile_);
|
| - content::URLDataSource::Add(this, icon_source);
|
| -
|
| #if defined(ENABLE_PLUGINS)
|
| ChromePluginServiceFilter::GetInstance()->RegisterResourceContext(
|
| PluginPrefs::GetForProfile(this).get(),
|
| @@ -150,6 +145,11 @@ void OffTheRecordProfileImpl::Init() {
|
| #endif
|
|
|
| #if defined(ENABLE_EXTENSIONS)
|
| + // Make the chrome//extension-icon/ resource available.
|
| + extensions::ExtensionIconSource* icon_source =
|
| + new extensions::ExtensionIconSource(profile_);
|
| + content::URLDataSource::Add(this, icon_source);
|
| +
|
| BrowserThread::PostTask(
|
| BrowserThread::IO, FROM_HERE,
|
| base::Bind(&NotifyOTRProfileCreatedOnIOThread, profile_, this));
|
|
|