From 8790210c68de5ab29e54a46f761a7a8d60430334 Mon Sep 17 00:00:00 2001 From: "brettw@chromium.org" Date: Mon, 2 Dec 2013 05:29:53 +0000 Subject: Move EmptyString, kWhitespace and the BOM to base. This moves EmptyString*, kWhitespace*, and the UTF 8 Byte Order Marker to the base:: namespace. Many of them just got changed to a default-constructed string when a reference was not required. I qualified some string16s with base:: when I was changing adjacent code. I need to do another pass to finish these up. BUG= TBR=sky@chromium.org Review URL: https://codereview.chromium.org/89243003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@238032 0039d316-1c4b-4281-b951-d872f2087c98 --- testing/android/native_test_util.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'testing/android/native_test_util.cc') diff --git a/testing/android/native_test_util.cc b/testing/android/native_test_util.cc index ff2c47e..c814e6f 100644 --- a/testing/android/native_test_util.cc +++ b/testing/android/native_test_util.cc @@ -13,7 +13,7 @@ namespace { void ParseArgsFromString(const std::string& command_line, std::vector* args) { - base::StringTokenizer tokenizer(command_line, kWhitespaceASCII); + base::StringTokenizer tokenizer(command_line, base::kWhitespaceASCII); tokenizer.set_quote_chars("\""); while (tokenizer.GetNext()) { std::string token; -- cgit v1.1