| Index: chrome/common/instant_types.h | 
| diff --git a/chrome/common/instant_types.h b/chrome/common/instant_types.h | 
| index a7e748b1c834ce7af16e6a7b271050063891c4dc..f79a86210a4ccc490b424bfe23cc010074d8634a 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() : restricted_id(0) {} | 
| + | 
| +  // A private identifier used on the browser side when retrieving assets. | 
| +  uint64 restricted_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; | 
| }; | 
|  | 
|  |