| Index: ui/base/resource/data_pack.cc
|
| ===================================================================
|
| --- ui/base/resource/data_pack.cc (revision 133676)
|
| +++ ui/base/resource/data_pack.cc (working copy)
|
| @@ -169,12 +169,13 @@
|
| return true;
|
| }
|
|
|
| -RefCountedStaticMemory* DataPack::GetStaticMemory(uint16 resource_id) const {
|
| +base::RefCountedStaticMemory* DataPack::GetStaticMemory(
|
| + uint16 resource_id) const {
|
| base::StringPiece piece;
|
| if (!GetStringPiece(resource_id, &piece))
|
| return NULL;
|
|
|
| - return new RefCountedStaticMemory(
|
| + return new base::RefCountedStaticMemory(
|
| reinterpret_cast<const unsigned char*>(piece.data()), piece.length());
|
| }
|
|
|
|
|