diff options
author | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-20 00:38:38 +0000 |
---|---|---|
committer | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-20 00:38:38 +0000 |
commit | d4eafbf25ee2e43dbcee80ccb55a3e5c153dd189 (patch) | |
tree | be8be064771dac45ef5f9d9c26bdead102e3d2b8 /net/base/net_module.h | |
parent | 2dea04cdfc632bfe29d7ffb436827ea2726ec092 (diff) | |
download | chromium_src-d4eafbf25ee2e43dbcee80ccb55a3e5c153dd189.zip chromium_src-d4eafbf25ee2e43dbcee80ccb55a3e5c153dd189.tar.gz chromium_src-d4eafbf25ee2e43dbcee80ccb55a3e5c153dd189.tar.bz2 |
Revert "Make the net resource interface use StringPiece instead of
std::string. This means we can point directly into the resource in the
binary, instead of copying. This makes sense for the TLD data, which doesn't
need to be copied around."
This reverts commit r5735.
TBR=deanm
Review URL: http://codereview.chromium.org/11298
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5736 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base/net_module.h')
-rw-r--r-- | net/base/net_module.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/net/base/net_module.h b/net/base/net_module.h index e527b9f..ef309ff 100644 --- a/net/base/net_module.h +++ b/net/base/net_module.h @@ -8,7 +8,6 @@ #include <string> #include "base/basictypes.h" -#include "base/string_piece.h" namespace net { @@ -21,7 +20,7 @@ namespace net { // class NetModule { public: - typedef StringPiece (*ResourceProvider)(int key); + typedef std::string (*ResourceProvider)(int key); // Set the function to call when the net module needs resources static void SetResourceProvider(ResourceProvider func); @@ -29,7 +28,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 std::string GetResource(int key); private: DISALLOW_IMPLICIT_CONSTRUCTORS(NetModule); |