| Index: net/base/net_module.h
|
| diff --git a/net/base/net_module.h b/net/base/net_module.h
|
| index 06404d0795f3667d351b35f3264f809b0be2053d..6df4bfe315bc6c28f33356e6c74fcf6ebbe2d916 100644
|
| --- a/net/base/net_module.h
|
| +++ b/net/base/net_module.h
|
| @@ -19,7 +19,7 @@ namespace net {
|
| //
|
| class NetModule {
|
| public:
|
| - typedef StringPiece (*ResourceProvider)(int key);
|
| + typedef base::StringPiece (*ResourceProvider)(int key);
|
|
|
| // Set the function to call when the net module needs resources
|
| static void SetResourceProvider(ResourceProvider func);
|
| @@ -27,7 +27,7 @@ class NetModule {
|
| // Call the resource provider (if one exists) to get the specified resource.
|
| // Returns an empty string if the resource does not exist or if there is no
|
| // resource provider.
|
| - static StringPiece GetResource(int key);
|
| + static base::StringPiece GetResource(int key);
|
|
|
| private:
|
| DISALLOW_IMPLICIT_CONSTRUCTORS(NetModule);
|
|
|