| Index: base/data_pack.h | 
| =================================================================== | 
| --- base/data_pack.h	(revision 50259) | 
| +++ base/data_pack.h	(working copy) | 
| @@ -35,12 +35,12 @@ | 
| // Get resource by id |resource_id|, filling in |data|. | 
| // The data is owned by the DataPack object and should not be modified. | 
| // Returns false if the resource id isn't found. | 
| -  bool GetStringPiece(uint32 resource_id, StringPiece* data) const; | 
| +  bool GetStringPiece(uint32 resource_id, StringPiece* data); | 
|  | 
| // Like GetStringPiece(), but returns a reference to memory. This interface | 
| // is used for image data, while the StringPiece interface is usually used | 
| // for localization strings. | 
| -  RefCountedStaticMemory* GetStaticMemory(uint32 resource_id) const; | 
| +  RefCountedStaticMemory* GetStaticMemory(uint32 resource_id); | 
|  | 
| // Writes a pack file containing |resources| to |path|. | 
| static bool WritePack(const FilePath& path, | 
|  |