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

Unified Diff: ash/public/cpp/shelf_types.cc

Issue 2833173002: mash: Support ShelfModel access in Chrome. (Closed)
Patch Set: Address comments; fix test failures. Created 3 years, 7 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: 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

Powered by Google App Engine
This is Rietveld 408576698