| Index: ash/common/new_window_controller.cc
|
| diff --git a/ash/common/new_window_controller.cc b/ash/common/new_window_controller.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..f316e9c707d49c012658b4d63f03fbcf7435dcde
|
| --- /dev/null
|
| +++ b/ash/common/new_window_controller.cc
|
| @@ -0,0 +1,70 @@
|
| +// Copyright 2016 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 "ash/common/new_window_controller.h"
|
| +
|
| +#include <utility>
|
| +
|
| +namespace ash {
|
| +
|
| +NewWindowController::NewWindowController() {}
|
| +
|
| +NewWindowController::~NewWindowController() {}
|
| +
|
| +void NewWindowController::BindRequest(
|
| + mojom::NewWindowControllerRequest request) {
|
| + bindings_.AddBinding(this, std::move(request));
|
| +}
|
| +
|
| +void NewWindowController::NewTab() {
|
| + if (client_)
|
| + client_->NewTab();
|
| +}
|
| +
|
| +void NewWindowController::NewWindow(bool incognito) {
|
| + if (client_)
|
| + client_->NewWindow(incognito);
|
| +}
|
| +
|
| +void NewWindowController::OpenFileManager() {
|
| + if (client_)
|
| + client_->OpenFileManager();
|
| +}
|
| +
|
| +void NewWindowController::OpenCrosh() {
|
| + if (client_)
|
| + client_->OpenCrosh();
|
| +}
|
| +
|
| +void NewWindowController::OpenGetHelp() {
|
| + if (client_)
|
| + client_->OpenGetHelp();
|
| +}
|
| +
|
| +void NewWindowController::RestoreTab() {
|
| + if (client_)
|
| + client_->RestoreTab();
|
| +}
|
| +
|
| +void NewWindowController::ShowKeyboardOverlay() {
|
| + if (client_)
|
| + client_->ShowKeyboardOverlay();
|
| +}
|
| +
|
| +void NewWindowController::ShowTaskManager() {
|
| + if (client_)
|
| + client_->ShowTaskManager();
|
| +}
|
| +
|
| +void NewWindowController::OpenFeedbackPage() {
|
| + if (client_)
|
| + client_->OpenFeedbackPage();
|
| +}
|
| +
|
| +void NewWindowController::SetClient(
|
| + mojom::NewWindowClientAssociatedPtrInfo client) {
|
| + client_.Bind(std::move(client));
|
| +}
|
| +
|
| +} // namespace ash
|
|
|