Index: components/mus/client_connection.cc |
diff --git a/components/view_manager/client_connection.cc b/components/mus/client_connection.cc |
similarity index 74% |
rename from components/view_manager/client_connection.cc |
rename to components/mus/client_connection.cc |
index 3480a20c33f573779994a280480543b09c8dbc6c..cf13eedc12a16fc1dcc6a12662ea17c43cfc4994 100644 |
--- a/components/view_manager/client_connection.cc |
+++ b/components/mus/client_connection.cc |
@@ -2,20 +2,18 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include "components/view_manager/client_connection.h" |
+#include "components/mus/client_connection.h" |
-#include "components/view_manager/connection_manager.h" |
-#include "components/view_manager/view_tree_impl.h" |
+#include "components/mus/connection_manager.h" |
+#include "components/mus/view_tree_impl.h" |
namespace view_manager { |
ClientConnection::ClientConnection(scoped_ptr<ViewTreeImpl> service, |
mojo::ViewTreeClient* client) |
- : service_(service.Pass()), client_(client) { |
-} |
+ : service_(service.Pass()), client_(client) {} |
-ClientConnection::~ClientConnection() { |
-} |
+ClientConnection::~ClientConnection() {} |
DefaultClientConnection::DefaultClientConnection( |
scoped_ptr<ViewTreeImpl> service_impl, |
@@ -30,7 +28,6 @@ DefaultClientConnection::DefaultClientConnection( |
[this]() { connection_manager_->OnConnectionError(this); }); |
} |
-DefaultClientConnection::~DefaultClientConnection() { |
-} |
+DefaultClientConnection::~DefaultClientConnection() {} |
} // namespace view_manager |