From 476dafb386743bb8db7c3cda201b86b9c70bf753 Mon Sep 17 00:00:00 2001
From: "brettw@chromium.org"
 <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>
Date: Tue, 3 Dec 2013 00:39:26 +0000
Subject: Move more uses of string16 to specify base::

This makes base, ui, and net compile without the "using base::string16" directive that's currently checked in.

BUG=

Review URL: https://codereview.chromium.org/100303003

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@238246 0039d316-1c4b-4281-b951-d872f2087c98
---
 net/ftp/ftp_util.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'net/ftp')

diff --git a/net/ftp/ftp_util.cc b/net/ftp/ftp_util.cc
index 472275a..e639c46 100644
--- a/net/ftp/ftp_util.cc
+++ b/net/ftp/ftp_util.cc
@@ -251,7 +251,7 @@ bool FtpUtil::LsDateListingToTime(const base::string16& month,
       return false;
 
     size_t colon_pos = rest.find(':');
-    if (colon_pos == string16::npos)
+    if (colon_pos == base::string16::npos)
       return false;
     if (colon_pos > 2)
       return false;
-- 
cgit v1.1