diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-13 00:01:55 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-13 00:01:55 +0000 |
commit | d069c11a1974fd1ad0852d3cee88b5eba7e7ccf4 (patch) | |
tree | 030774ecd61439a6bd5830e6b0562fbacd5db2dc /net/ftp | |
parent | 18f86a1837878115194ad3ba4e98345118bd0b40 (diff) | |
download | chromium_src-d069c11a1974fd1ad0852d3cee88b5eba7e7ccf4.zip chromium_src-d069c11a1974fd1ad0852d3cee88b5eba7e7ccf4.tar.gz chromium_src-d069c11a1974fd1ad0852d3cee88b5eba7e7ccf4.tar.bz2 |
net: Update the include paths of base/string_piece.h to its new location.
string_piece.h was moved into base/strings/ in r191206 -
https://chromiumcodereview.appspot.com/12982018/
TBR=eroman@chromium.org,brettw@chromium.org
Review URL: https://codereview.chromium.org/14223008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194055 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/ftp')
-rw-r--r-- | net/ftp/ftp_ctrl_response_buffer.cc | 2 | ||||
-rw-r--r-- | net/ftp/ftp_util.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/net/ftp/ftp_ctrl_response_buffer.cc b/net/ftp/ftp_ctrl_response_buffer.cc index 9fb9fd8..218ab43 100644 --- a/net/ftp/ftp_ctrl_response_buffer.cc +++ b/net/ftp/ftp_ctrl_response_buffer.cc @@ -7,7 +7,7 @@ #include "base/bind.h" #include "base/logging.h" #include "base/string_number_conversions.h" -#include "base/string_piece.h" +#include "base/strings/string_piece.h" #include "base/values.h" #include "net/base/net_errors.h" diff --git a/net/ftp/ftp_util.cc b/net/ftp/ftp_util.cc index 68307a2..b2c816c 100644 --- a/net/ftp/ftp_util.cc +++ b/net/ftp/ftp_util.cc @@ -12,8 +12,8 @@ #include "base/logging.h" #include "base/memory/singleton.h" #include "base/string_number_conversions.h" -#include "base/string_piece.h" #include "base/string_util.h" +#include "base/strings/string_piece.h" #include "base/strings/string_split.h" #include "base/strings/string_tokenizer.h" #include "base/time.h" |