blob: e52157592501a5333248ee39b39041f1852835bd [file] [log] [blame]
// Copyright (c) 2012 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/chromeos/bluetooth/bluetooth_pairing_dialog.h"
#include "base/json/json_writer.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/browser/ui/browser_dialogs.h"
#include "chrome/common/url_constants.h"
#include "chrome/grit/generated_resources.h"
#include "device/bluetooth/bluetooth_device.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/gfx/geometry/size.h"
using content::WebContents;
using content::WebUIMessageHandler;
namespace chromeos {
namespace {
// Default width/height ratio of screen size.
const int kDefaultWidth = 480;
const int kDefaultHeight = 280;
} // namespace
///////////////////////////////////////////////////////////////////////////////
// BluetoothPairingDialog, public:
BluetoothPairingDialog::BluetoothPairingDialog(
gfx::NativeWindow parent_window,
const device::BluetoothDevice* device)
: parent_window_(parent_window),
webui_(nullptr) {
device_data_.SetString("address", device->GetAddress());
device_data_.SetString("name", device->GetName());
device_data_.SetBoolean("paired", device->IsPaired());
device_data_.SetBoolean("connected", device->IsConnected());
}
BluetoothPairingDialog::~BluetoothPairingDialog() {
}
void BluetoothPairingDialog::Show() {
// Bluetooth settings are currently stored on the device, accessible for
// everyone who uses the machine. As such we can use the active user profile.
chrome::ShowWebDialog(parent_window_,
ProfileManager::GetActiveUserProfile(),
this);
}
///////////////////////////////////////////////////////////////////////////////
// LoginWebDialog, protected:
ui::ModalType BluetoothPairingDialog::GetDialogModalType() const {
return ui::MODAL_TYPE_SYSTEM;
}
base::string16 BluetoothPairingDialog::GetDialogTitle() const {
return l10n_util::GetStringUTF16(
IDS_OPTIONS_SETTINGS_BLUETOOTH_ADD_DEVICE_TITLE);
}
GURL BluetoothPairingDialog::GetDialogContentURL() const {
return GURL(chrome::kChromeUIBluetoothPairingURL);
}
void BluetoothPairingDialog::GetWebUIMessageHandlers(
std::vector<WebUIMessageHandler*>* handlers) const {
}
void BluetoothPairingDialog::GetDialogSize(gfx::Size* size) const {
size->SetSize(kDefaultWidth, kDefaultHeight);
}
std::string BluetoothPairingDialog::GetDialogArgs() const {
std::string data;
base::JSONWriter::Write(device_data_, &data);
return data;
}
void BluetoothPairingDialog::OnDialogShown(
content::WebUI* webui,
content::RenderViewHost* render_view_host) {
webui_ = webui;
}
void BluetoothPairingDialog::OnDialogClosed(const std::string& json_retval) {
delete this;
}
void BluetoothPairingDialog::OnCloseContents(WebContents* source,
bool* out_close_dialog) {
*out_close_dialog = true;
}
bool BluetoothPairingDialog::ShouldShowDialogTitle() const {
return true;
}
bool BluetoothPairingDialog::HandleContextMenu(
const content::ContextMenuParams& params) {
// Disable context menu.
return true;
}
} // namespace chromeos