Index: ash/public/cpp/shelf_types.cc |
diff --git a/ash/public/cpp/shelf_types.cc b/ash/public/cpp/shelf_types.cc |
index 044872357f4ccc78b74d54757e827d471288736f..b5d1bf99963f84e72b2b5177e06f4a7a84038eb4 100644 |
--- a/ash/public/cpp/shelf_types.cc |
+++ b/ash/public/cpp/shelf_types.cc |
@@ -68,4 +68,8 @@ ShelfID ShelfID::Deserialize(const std::string* string) { |
return ShelfID(components[0], components[1]); |
} |
+std::ostream& operator<<(std::ostream& o, const ShelfID& id) { |
+ return o << "app_id:" << id.app_id << ", launch_id:" << id.launch_id; |
+} |
+ |
} // namespace ash |