blob: cf2b892287a62af6a696cba294e18a6177473a06 [file] [log] [blame]
// Copyright 2013 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/ui/views/user_manager_view.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/lifetime/application_lifetime.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_window.h"
#include "chrome/common/url_constants.h"
#include "content/public/browser/web_contents.h"
#include "content/public/browser/web_contents_view.h"
#include "grit/generated_resources.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/views/controls/webview/webview.h"
#include "ui/views/layout/fill_layout.h"
#include "ui/views/view.h"
#include "ui/views/widget/widget.h"
#if defined(USE_ASH)
#include "ash/wm/window_util.h"
#endif
#if defined(OS_WIN)
#include "chrome/browser/shell_integration.h"
#include "ui/base/win/shell.h"
#include "ui/views/win/hwnd_util.h"
#include "win8/util/win8_util.h"
#endif
namespace {
// Default window size.
const int kWindowWidth = 900;
const int kWindowHeight = 700;
}
// static
UserManagerView* UserManagerView::instance_ = NULL;
UserManagerView::UserManagerView(Profile* profile)
: web_view_(new views::WebView(profile)) {
SetLayoutManager(new views::FillLayout);
AddChildView(web_view_);
// Prevent the browser process from shutting down while this window is open.
chrome::StartKeepAlive();
}
UserManagerView::~UserManagerView() {
chrome::EndKeepAlive(); // Remove shutdown prevention.
}
// static
void UserManagerView::Show(Browser* browser) {
DCHECK(browser);
if (instance_) {
// If there's a user manager window open already, just activate it.
instance_->GetWidget()->Activate();
return;
}
// Create the guest profile, if necessary, and open the user manager
// from the guest profile.
ProfileManager* profile_manager = g_browser_process->profile_manager();
profile_manager->CreateProfileAsync(
ProfileManager::GetGuestProfilePath(),
base::Bind(&UserManagerView::OnGuestProfileCreated,
browser),
string16(),
string16(),
std::string());
}
void UserManagerView::OnGuestProfileCreated(
Browser* browser,
Profile* guest_profile,
Profile::CreateStatus status) {
if (status != Profile::CREATE_STATUS_INITIALIZED)
return;
instance_ = new UserManagerView(guest_profile);
gfx::NativeWindow context = browser->window()->GetNativeWindow();
#if defined(USE_ASH)
if (!context)
context = ash::wm::GetActiveWindow();
#endif
DialogDelegate::CreateDialogWidget(instance_, context, NULL);
#if defined(OS_WIN)
// Set the app id for the task manager to the app id of its parent browser. If
// no parent is specified, the app id will default to that of the initial
// process.
if (browser) {
ui::win::SetAppIdForWindow(
ShellIntegration::GetChromiumModelIdForProfile(
browser->profile()->GetPath()),
views::HWNDForWidget(instance_->GetWidget()));
}
#endif
instance_->GetWidget()->Show();
instance_->web_view_->LoadInitialURL(GURL(chrome::kChromeUIUserManagerURL));
instance_->web_view_->RequestFocus();
}
gfx::Size UserManagerView::GetPreferredSize() {
return gfx::Size(kWindowWidth, kWindowHeight);
}
bool UserManagerView::CanResize() const {
return true;
}
bool UserManagerView::CanMaximize() const {
return true;
}
string16 UserManagerView::GetWindowTitle() const {
return l10n_util::GetStringUTF16(IDS_USER_MANAGER_SCREEN_TITLE);
}
int UserManagerView::GetDialogButtons() const {
return ui::DIALOG_BUTTON_NONE;
}
void UserManagerView::WindowClosing() {
// Now that the window is closed, we can allow a new one to be opened.
// (WindowClosing comes in asynchronously from the call to Close() and we
// may have already opened a new instance).
if (instance_ == this)
instance_ = NULL;
}
bool UserManagerView::UseNewStyleForThisDialog() const {
return false;
}