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

Unified Diff: components/mus/ids.h

Issue 1344573002: Mandoline: Rename components/view_manager to components/mus (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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
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;

Powered by Google App Engine
This is Rietveld 408576698