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

Unified Diff: ash/mus/new_window_delegate_mus.cc

Issue 2192613002: Moves NewWindowDelegate to ash/common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: order Created 4 years, 5 months 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/mus/new_window_delegate_mus.h ('k') | ash/mus/shell_delegate_mus.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/mus/new_window_delegate_mus.cc
diff --git a/ash/mus/new_window_delegate_mus.cc b/ash/mus/new_window_delegate_mus.cc
new file mode 100644
index 0000000000000000000000000000000000000000..cb707461cb1baafe33fb56880931fcd841453ca6
--- /dev/null
+++ b/ash/mus/new_window_delegate_mus.cc
@@ -0,0 +1,63 @@
+// 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/mus/new_window_delegate_mus.h"
+
+#include "base/logging.h"
+#include "services/shell/public/cpp/connector.h"
+
+namespace ash {
+namespace mus {
+
+NewWindowDelegateMus::NewWindowDelegateMus() {}
+
+NewWindowDelegateMus::~NewWindowDelegateMus() {}
+
+void NewWindowDelegateMus::NewTab() {
+ // TODO: http://crbug.com/631836.
+ NOTIMPLEMENTED();
+}
+
+void NewWindowDelegateMus::NewWindow(bool incognito) {
+ // TODO: http://crbug.com/631836.
+ NOTIMPLEMENTED();
+}
+
+void NewWindowDelegateMus::OpenFileManager() {
+ // TODO: http://crbug.com/631836.
+ NOTIMPLEMENTED();
+}
+
+void NewWindowDelegateMus::OpenCrosh() {
+ // TODO: http://crbug.com/631836.
+ NOTIMPLEMENTED();
+}
+
+void NewWindowDelegateMus::OpenGetHelp() {
+ // TODO: http://crbug.com/631836.
+ NOTIMPLEMENTED();
+}
+
+void NewWindowDelegateMus::RestoreTab() {
+ // TODO: http://crbug.com/631836.
+ NOTIMPLEMENTED();
+}
+
+void NewWindowDelegateMus::ShowKeyboardOverlay() {
+ // TODO: http://crbug.com/631836.
+ NOTIMPLEMENTED();
+}
+
+void NewWindowDelegateMus::ShowTaskManager() {
+ // TODO: http://crbug.com/631836.
+ NOTIMPLEMENTED();
+}
+
+void NewWindowDelegateMus::OpenFeedbackPage() {
+ // TODO: http://crbug.com/631836.
+ NOTIMPLEMENTED();
+}
+
+} // namespace mus
+} // namespace ash
« no previous file with comments | « ash/mus/new_window_delegate_mus.h ('k') | ash/mus/shell_delegate_mus.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698