From 76eb0247d08fa6c503517ec1a0cb8e6566cd39c7 Mon Sep 17 00:00:00 2001 From: "tfarina@chromium.org" Date: Thu, 14 Oct 2010 00:35:36 +0000 Subject: base: Move SplitString functions into the base namespace and update the callers. BUG=None TEST=trybots Review URL: http://codereview.chromium.org/3750001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62483 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/views/shell_dialogs_win.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'chrome/browser/views/shell_dialogs_win.cc') diff --git a/chrome/browser/views/shell_dialogs_win.cc b/chrome/browser/views/shell_dialogs_win.cc index bd7fb47..1a4d04a 100644 --- a/chrome/browser/views/shell_dialogs_win.cc +++ b/chrome/browser/views/shell_dialogs_win.cc @@ -309,7 +309,7 @@ bool SaveFileAsWithFilter(HWND owner, // instance of null to get to "*.jpg". std::vector filters; if (!filter.empty() && save_as.nFilterIndex > 0) - SplitString(filter, '\0', &filters); + base::SplitString(filter, '\0', &filters); std::wstring filter_selected; if (!filters.empty()) filter_selected = filters[(2 * (save_as.nFilterIndex - 1)) + 1]; -- cgit v1.1