| Index: chrome/browser/extensions/sidebar_container.cc
|
| diff --git a/chrome/browser/extensions/sidebar_container.cc b/chrome/browser/extensions/sidebar_container.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..f89fa157146d51092547c0efb96087f5c4d0c90a
|
| --- /dev/null
|
| +++ b/chrome/browser/extensions/sidebar_container.cc
|
| @@ -0,0 +1,58 @@
|
| +// Copyright (c) 2015 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "chrome/browser/extensions/sidebar_container.h"
|
| +
|
| +#include "base/strings/utf_string_conversions.h"
|
| +#include "chrome/browser/chrome_notification_types.h"
|
| +#include "chrome/browser/extensions/chrome_extension_web_contents_observer.h"
|
| +#include "chrome/browser/extensions/extension_service.h"
|
| +#include "chrome/browser/extensions/extension_view_host_factory.h"
|
| +#include "chrome/browser/extensions/sidebar_manager.h"
|
| +#include "chrome/browser/profiles/profile.h"
|
| +#include "components/app_modal/javascript_dialog_manager.h"
|
| +#include "content/public/browser/notification_details.h"
|
| +#include "content/public/browser/notification_source.h"
|
| +#include "content/public/browser/web_contents.h"
|
| +#include "extensions/common/extension.h"
|
| +#include "extensions/common/extension_resource.h"
|
| +#include "url/gurl.h"
|
| +
|
| +namespace extensions {
|
| +SidebarContainer::SidebarContainer(Browser* browser,
|
| + content::WebContents* tab,
|
| + const GURL& url)
|
| + : host_(extensions::ExtensionViewHostFactory::CreateSidebarHost(url,
|
| + browser)),
|
| + tab_(tab) {
|
| + extensions::ChromeExtensionWebContentsObserver::CreateForWebContents(
|
| + host_contents());
|
| +
|
| + // Listen for the containing view calling window.close();
|
| + registrar_.Add(
|
| + this, extensions::NOTIFICATION_EXTENSION_HOST_VIEW_SHOULD_CLOSE,
|
| + content::Source<content::BrowserContext>(host_->browser_context()));
|
| +
|
| + host_->CreateRenderViewSoon();
|
| + host_contents()->SetInitialFocus();
|
| +}
|
| +
|
| +SidebarContainer::~SidebarContainer() {
|
| +}
|
| +
|
| +void SidebarContainer::Observe(int type,
|
| + const content::NotificationSource& source,
|
| + const content::NotificationDetails& details) {
|
| + if (type != extensions::NOTIFICATION_EXTENSION_HOST_VIEW_SHOULD_CLOSE) {
|
| + NOTREACHED() << L"Received unexpected notification";
|
| + return;
|
| + }
|
| +
|
| + // If we aren't the host of the popup, then disregard the notification.
|
| + if (content::Details<extensions::ExtensionHost>(host_.get()) == details)
|
| + extensions::SidebarManager::GetFromContext(host_->browser_context())
|
| + ->HideSidebar(tab_);
|
| +}
|
| +
|
| +} // namespace extensions
|
|
|