| Index: ash/common/shelf/shelf_item_types.h
|
| diff --git a/ash/common/shelf/shelf_item_types.h b/ash/common/shelf/shelf_item_types.h
|
| index 02a8a5a827548504e90426b25bf05ace1b37104e..c09a06433649dd44bea3f47b2d39fa74e8b01551 100644
|
| --- a/ash/common/shelf/shelf_item_types.h
|
| +++ b/ash/common/shelf/shelf_item_types.h
|
| @@ -5,6 +5,7 @@
|
| #ifndef ASH_COMMON_SHELF_SHELF_ITEM_TYPES_H_
|
| #define ASH_COMMON_SHELF_SHELF_ITEM_TYPES_H_
|
|
|
| +#include <string>
|
| #include <vector>
|
|
|
| #include "ash/ash_export.h"
|
| @@ -71,6 +72,9 @@ struct ASH_EXPORT ShelfItem {
|
|
|
| // Running status.
|
| ShelfItemStatus status = STATUS_CLOSED;
|
| +
|
| + // The application id for this shelf item; only populated for some items.
|
| + std::string app_id;
|
| };
|
|
|
| typedef std::vector<ShelfItem> ShelfItems;
|
|
|