Index: extensions/browser/extension_host.cc |
diff --git a/extensions/browser/extension_host.cc b/extensions/browser/extension_host.cc |
index 124a8fd2ddf3c4ca1502ec2369beb1676c774073..8ca0ea167a361e71e10c56097389a1dc06ceac63 100644 |
--- a/extensions/browser/extension_host.cc |
+++ b/extensions/browser/extension_host.cc |
@@ -67,9 +67,10 @@ ExtensionHost::ExtensionHost(const Extension* extension, |
// Not used for panels, see PanelHost. |
DCHECK(host_type == VIEW_TYPE_EXTENSION_BACKGROUND_PAGE || |
host_type == VIEW_TYPE_EXTENSION_DIALOG || |
- host_type == VIEW_TYPE_EXTENSION_POPUP); |
+ host_type == VIEW_TYPE_EXTENSION_POPUP || |
+ host_type == VIEW_TYPE_EXTENSION_SIDEBAR); |
host_contents_.reset(WebContents::Create( |
- WebContents::CreateParams(browser_context_, site_instance))), |
+ WebContents::CreateParams(browser_context_, site_instance))); |
content::WebContentsObserver::Observe(host_contents_.get()); |
host_contents_->SetDelegate(this); |
SetViewType(host_contents_.get(), host_type); |