| Index: chrome/common/instant_types.h | 
| diff --git a/chrome/common/instant_types.h b/chrome/common/instant_types.h | 
| index a7e748b1c834ce7af16e6a7b271050063891c4dc..ae371c9a2a3d27687e26878c7b28fe707c7ce9a7 100644 | 
| --- a/chrome/common/instant_types.h | 
| +++ b/chrome/common/instant_types.h | 
| @@ -152,12 +152,17 @@ struct ThemeBackgroundInfo { | 
| uint16 image_height; | 
| }; | 
|  | 
| -// A most visited item. | 
| -struct MostVisitedItem { | 
| -  // URL of the most visited page. | 
| +struct InstantMostVisitedItem { | 
| +  InstantMostVisitedItem() : most_visited_item_id(0) {} | 
| + | 
| +  // A private identifier used on the browser side when retrieving assets. | 
| +  uint64 most_visited_item_id; | 
| + | 
| +  // The URL of the Most Visited item. | 
| GURL url; | 
|  | 
| -  // Title of the most visited page. | 
| +  // The title of the Most Visited page.  May be empty, in which case the |url| | 
| +  // is used as the title. | 
| string16 title; | 
| }; | 
|  | 
|  |