diff options
Diffstat (limited to 'net/base/net_module.h')
-rw-r--r-- | net/base/net_module.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/base/net_module.h b/net/base/net_module.h index 06404d0..6df4bfe 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); |