Home | History | Annotate | Download | only in base

Lines Matching defs:WindowId

29 class WindowId {
42 static WindowId Cast(uint64 id) {
44 return WindowId(reinterpret_cast<WindowId::WindowT>(id));
46 return WindowId(static_cast<WindowId::WindowT>(id));
58 WindowId() : id_(0) {}
59 WindowId(const WindowT& id) : id_(id) {} // NOLINT
62 bool Equals(const WindowId& other) const {
118 inline std::string ToString(const WindowId& window) {