| Index: components/mus/ids.h
|
| diff --git a/components/view_manager/ids.h b/components/mus/ids.h
|
| similarity index 84%
|
| rename from components/view_manager/ids.h
|
| rename to components/mus/ids.h
|
| index 54fda01d19f585241255087b3ae07c37cf5c9498..54f2fae30991deee694d1c072b744ed30cfb96ec 100644
|
| --- a/components/view_manager/ids.h
|
| +++ b/components/mus/ids.h
|
| @@ -5,8 +5,8 @@
|
| #ifndef COMPONENTS_VIEW_MANAGER_IDS_H_
|
| #define COMPONENTS_VIEW_MANAGER_IDS_H_
|
|
|
| -#include "components/view_manager/public/cpp/types.h"
|
| -#include "components/view_manager/public/cpp/util.h"
|
| +#include "components/mus/public/cpp/types.h"
|
| +#include "components/mus/public/cpp/util.h"
|
|
|
| namespace view_manager {
|
|
|
| @@ -22,13 +22,10 @@ struct ViewId {
|
| ViewId() : connection_id(0), view_id(0) {}
|
|
|
| bool operator==(const ViewId& other) const {
|
| - return other.connection_id == connection_id &&
|
| - other.view_id == view_id;
|
| + return other.connection_id == connection_id && other.view_id == view_id;
|
| }
|
|
|
| - bool operator!=(const ViewId& other) const {
|
| - return !(*this == other);
|
| - }
|
| + bool operator!=(const ViewId& other) const { return !(*this == other); }
|
|
|
| mojo::ConnectionSpecificId connection_id;
|
| mojo::ConnectionSpecificId view_id;
|
|
|