summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/ui')
-rw-r--r--chrome/browser/ui/views/extensions/extension_dialog.cc76
-rw-r--r--chrome/browser/ui/views/extensions/extension_dialog.h22
2 files changed, 59 insertions, 39 deletions
diff --git a/chrome/browser/ui/views/extensions/extension_dialog.cc b/chrome/browser/ui/views/extensions/extension_dialog.cc
index 35f8220..9f0ec8f 100644
--- a/chrome/browser/ui/views/extensions/extension_dialog.cc
+++ b/chrome/browser/ui/views/extensions/extension_dialog.cc
@@ -19,12 +19,13 @@
#include "content/public/browser/render_widget_host_view.h"
#include "content/public/browser/web_contents.h"
#include "googleurl/src/gurl.h"
+#include "ui/gfx/screen.h"
#include "ui/views/background.h"
#include "ui/views/widget/widget.h"
#if defined(USE_AURA)
+#include "ash/shell.h"
#include "ui/aura/root_window.h"
-#include "ui/aura/window.h"
#endif
using content::WebContents;
@@ -58,19 +59,27 @@ ExtensionDialog* ExtensionDialog::Show(
int height,
const string16& title,
ExtensionDialogObserver* observer) {
- return ExtensionDialog::ShowInternal(url, browser, web_contents, width,
- height, false, title, observer);
+ ExtensionHost* host = CreateExtensionHost(url, browser, NULL);
+ if (!host)
+ return NULL;
+ host->set_associated_web_contents(web_contents);
+
+ return ExtensionDialog::ShowInternal(url, browser, host, width, height,
+ false, title, observer);
}
#if defined(USE_AURA)
// static
ExtensionDialog* ExtensionDialog::ShowFullscreen(
const GURL& url,
- Browser* browser,
- WebContents* web_contents,
+ Profile* profile,
const string16& title,
ExtensionDialogObserver* observer) {
- return ExtensionDialog::ShowInternal(url, browser, web_contents, 0, 0,
+ ExtensionHost* host = CreateExtensionHost(url, NULL, profile);
+ if (!host)
+ return NULL;
+
+ return ExtensionDialog::ShowInternal(url, NULL, host, 0, 0,
true, title, observer);
}
#endif
@@ -78,22 +87,18 @@ ExtensionDialog* ExtensionDialog::ShowFullscreen(
// static
ExtensionDialog* ExtensionDialog::ShowInternal(const GURL& url,
Browser* browser,
- content::WebContents* web_contents,
+ ExtensionHost* host,
int width,
int height,
bool fullscreen,
const string16& title,
ExtensionDialogObserver* observer) {
- CHECK(browser);
- ExtensionHost* host = CreateExtensionHost(url, browser);
- if (!host)
- return NULL;
- host->set_associated_web_contents(web_contents);
-
+ CHECK(fullscreen || browser);
ExtensionDialog* dialog = new ExtensionDialog(host, observer);
dialog->set_title(title);
+
if (fullscreen)
- dialog->InitWindowFullscreen(browser);
+ dialog->InitWindowFullscreen();
else
dialog->InitWindow(browser, width, height);
@@ -110,36 +115,41 @@ ExtensionDialog* ExtensionDialog::ShowInternal(const GURL& url,
// static
ExtensionHost* ExtensionDialog::CreateExtensionHost(const GURL& url,
- Browser* browser) {
- ExtensionProcessManager* manager =
- browser->profile()->GetExtensionProcessManager();
+ Browser* browser,
+ Profile* profile) {
+ // Prefer picking the extension manager from the profile if given.
+ ExtensionProcessManager* manager = NULL;
+ if (profile)
+ manager = profile->GetExtensionProcessManager();
+ else
+ manager = browser->profile()->GetExtensionProcessManager();
+
DCHECK(manager);
if (!manager)
return NULL;
- return manager->CreateDialogHost(url, browser);
+ if (browser)
+ return manager->CreateDialogHost(url, browser);
+ else
+ return manager->CreatePopupHost(url, NULL);
}
#if defined(USE_AURA)
-void ExtensionDialog::InitWindowFullscreen(Browser* browser) {
- gfx::NativeWindow parent = browser->window()->GetNativeHandle();
-
- // Create the window as a child of the root window.
- window_ = browser::CreateFramelessViewsWindow(
- parent->GetRootWindow(), this);
- // Make sure we're always on top by putting ourselves at the top
- // of the z-order of the child windows of the root window.
- parent->GetRootWindow()->StackChildAtTop(window_->GetNativeWindow());
-
- int width = parent->GetRootWindow()->GetHostSize().width();
- int height = parent->GetRootWindow()->GetHostSize().height();
- window_->SetBounds(gfx::Rect(0, 0, width, height));
-
+void ExtensionDialog::InitWindowFullscreen() {
+ aura::RootWindow* root_window = ash::Shell::GetRootWindow();
+ gfx::Rect screen_rect =
+ gfx::Screen::GetMonitorAreaNearestWindow(root_window);
+
+ // We want to be the fullscreen topmost child of the root window.
+ window_ = browser::CreateFramelessViewsWindow(root_window, this);
+ window_->StackAtTop();
+ window_->SetBounds(screen_rect);
window_->Show();
+
// TODO(jamescook): Remove redundant call to Activate()?
window_->Activate();
}
#else
-void ExtensionDialog::InitWindowFullscreen(Browser* browser) {
+void ExtensionDialog::InitWindowFullscreen() {
NOTIMPLEMENTED();
}
#endif
diff --git a/chrome/browser/ui/views/extensions/extension_dialog.h b/chrome/browser/ui/views/extensions/extension_dialog.h
index 65b65f0..47b91b5 100644
--- a/chrome/browser/ui/views/extensions/extension_dialog.h
+++ b/chrome/browser/ui/views/extensions/extension_dialog.h
@@ -7,6 +7,7 @@
#pragma once
#include "base/memory/ref_counted.h"
+#include "base/logging.h"
#include "content/public/browser/notification_observer.h"
#include "content/public/browser/notification_registrar.h"
#include "ui/views/widget/widget_delegate.h"
@@ -15,6 +16,7 @@ class Browser;
class ExtensionDialogObserver;
class ExtensionHost;
class GURL;
+class Profile;
namespace content {
class WebContents;
@@ -43,13 +45,20 @@ class ExtensionDialog : public views::WidgetDelegate,
#if defined(USE_AURA)
// Create and show a fullscreen dialog with |url|.
- // |browser| is the browser to which the pop-up will be attached.
+ // |profile| is the profile that the extension is registered with.
// |web_contents| is the tab that spawned the dialog.
static ExtensionDialog* ShowFullscreen(const GURL& url,
- Browser* browser,
- content::WebContents* web_contents,
+ Profile* profile,
const string16& title,
ExtensionDialogObserver* observer);
+#else
+ static ExtensionDialog* ShowFullscreen(const GURL& url,
+ Profile* profile,
+ const string16& title,
+ ExtensionDialogObserver* observer) {
+ NOTIMPLEMENTED();
+ return NULL;
+ }
#endif
// Notifies the dialog that the observer has been destroyed and should not
@@ -86,7 +95,7 @@ class ExtensionDialog : public views::WidgetDelegate,
static ExtensionDialog* ShowInternal(const GURL& url,
Browser* browser,
- content::WebContents* web_contents,
+ ExtensionHost* host,
int width,
int height,
bool fullscreen,
@@ -94,10 +103,11 @@ class ExtensionDialog : public views::WidgetDelegate,
ExtensionDialogObserver* observer);
static ExtensionHost* CreateExtensionHost(const GURL& url,
- Browser* browser);
+ Browser* browser,
+ Profile* profile);
void InitWindow(Browser* browser, int width, int height);
- void InitWindowFullscreen(Browser* browser);
+ void InitWindowFullscreen();
// Window that holds the extension host view.
views::Widget* window_;