Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2555)

Unified Diff: ash/common/new_window_controller.cc

Issue 2549903002: mash: Reverse the responsibilities of the NewWindowClient. (Closed)
Patch Set: jamescook comments Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/common/new_window_controller.h ('k') | ash/common/test/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « ash/common/new_window_controller.h ('k') | ash/common/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698