| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ash/mus/new_window_delegate_mus.h" | 5 #include "ash/mus/new_window_delegate_mus.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "services/shell/public/cpp/connector.h" | 8 #include "services/service_manager/public/cpp/connector.h" |
| 9 | 9 |
| 10 namespace ash { | 10 namespace ash { |
| 11 namespace mus { | 11 namespace mus { |
| 12 | 12 |
| 13 NewWindowDelegateMus::NewWindowDelegateMus() {} | 13 NewWindowDelegateMus::NewWindowDelegateMus() {} |
| 14 | 14 |
| 15 NewWindowDelegateMus::~NewWindowDelegateMus() {} | 15 NewWindowDelegateMus::~NewWindowDelegateMus() {} |
| 16 | 16 |
| 17 void NewWindowDelegateMus::NewTab() { | 17 void NewWindowDelegateMus::NewTab() { |
| 18 // TODO: http://crbug.com/631836. | 18 // TODO: http://crbug.com/631836. |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 NOTIMPLEMENTED(); | 54 NOTIMPLEMENTED(); |
| 55 } | 55 } |
| 56 | 56 |
| 57 void NewWindowDelegateMus::OpenFeedbackPage() { | 57 void NewWindowDelegateMus::OpenFeedbackPage() { |
| 58 // TODO: http://crbug.com/631836. | 58 // TODO: http://crbug.com/631836. |
| 59 NOTIMPLEMENTED(); | 59 NOTIMPLEMENTED(); |
| 60 } | 60 } |
| 61 | 61 |
| 62 } // namespace mus | 62 } // namespace mus |
| 63 } // namespace ash | 63 } // namespace ash |
| OLD | NEW |