summaryrefslogtreecommitdiffstats
path: root/mojo/services/view_manager/ids.h
diff options
context:
space:
mode:
Diffstat (limited to 'mojo/services/view_manager/ids.h')
-rw-r--r--mojo/services/view_manager/ids.h63
1 files changed, 0 insertions, 63 deletions
diff --git a/mojo/services/view_manager/ids.h b/mojo/services/view_manager/ids.h
deleted file mode 100644
index 0d1c486..0000000
--- a/mojo/services/view_manager/ids.h
+++ /dev/null
@@ -1,63 +0,0 @@
-// Copyright 2014 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.
-
-#ifndef MOJO_SERVICES_VIEW_MANAGER_IDS_H_
-#define MOJO_SERVICES_VIEW_MANAGER_IDS_H_
-
-#include "mojo/services/public/cpp/view_manager/types.h"
-#include "mojo/services/public/cpp/view_manager/util.h"
-
-namespace mojo {
-namespace service {
-
-// Connection id is used to indicate no connection. That is, no
-// ViewManagerServiceImpl ever gets this id.
-const ConnectionSpecificId kInvalidConnectionId = 0;
-
-// TODO(sky): remove this, temporary while window manager API is in existing
-// api.
-const ConnectionSpecificId kWindowManagerConnection = 1;
-
-// Adds a bit of type safety to view ids.
-struct ViewId {
- ViewId(ConnectionSpecificId connection_id, ConnectionSpecificId view_id)
- : connection_id(connection_id),
- view_id(view_id) {}
- ViewId() : connection_id(0), view_id(0) {}
-
- bool operator==(const ViewId& other) const {
- return other.connection_id == connection_id &&
- other.view_id == view_id;
- }
-
- bool operator!=(const ViewId& other) const {
- return !(*this == other);
- }
-
- ConnectionSpecificId connection_id;
- ConnectionSpecificId view_id;
-};
-
-inline ViewId ViewIdFromTransportId(Id id) {
- return ViewId(HiWord(id), LoWord(id));
-}
-
-inline Id ViewIdToTransportId(const ViewId& id) {
- return (id.connection_id << 16) | id.view_id;
-}
-
-inline ViewId RootViewId() {
- return ViewId(kInvalidConnectionId, 1);
-}
-
-// Returns a ViewId that is reserved to indicate no view. That is, no view will
-// ever be created with this id.
-inline ViewId InvalidViewId() {
- return ViewId(kInvalidConnectionId, 0);
-}
-
-} // namespace service
-} // namespace mojo
-
-#endif // MOJO_SERVICES_VIEW_MANAGER_IDS_H_