diff options
Diffstat (limited to 'app/resource_bundle.h')
-rw-r--r-- | app/resource_bundle.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/resource_bundle.h b/app/resource_bundle.h index 52c85c5..23f39c5 100644 --- a/app/resource_bundle.h +++ b/app/resource_bundle.h @@ -33,7 +33,9 @@ class Font; } class SkBitmap; typedef uint32 SkColor; +namespace base { class StringPiece; +} #if defined(OS_MACOSX) #ifdef __OBJC__ @@ -105,7 +107,7 @@ class ResourceBundle { // Like GetDataResource(), but avoids copying the resource. Instead, it // returns a StringPiece which points into the actual resource in the image. - StringPiece GetRawDataResource(int resource_id); + base::StringPiece GetRawDataResource(int resource_id); // Get a localized string given a message id. Returns an empty // string if the message_id is not found. |