Home | History | Annotate | Download | only in base

Lines Matching refs:type_

52   ScreencastId() : type_(INVALID) {}
54 : type_(WINDOW), window_(id) {
57 : type_(DESKTOP), desktop_(id) {
60 Type type() const { return type_; }
69 if (type_ == INVALID) {
71 } else if (type_ == WINDOW) {
77 bool IsWindow() const { return type_ == WINDOW; }
78 bool IsDesktop() const { return type_ == DESKTOP; }
80 if (type_ != other.type_) {
83 if (type_ == INVALID) {
85 } else if (type_ == WINDOW) {
106 Type type_;