Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6037)

Unified Diff: chrome/common/zip.cc

Issue 3750001: base: Move SplitString functions into the base namespace and update the callers. (Closed) Base URL: git://git.chromium.org/chromium.git
Patch Set: brett review, reverted changes in o3d due to it's using an old base revision Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/pepper_plugin_registry.cc ('k') | chrome/default_plugin/plugin_database_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/zip.cc
diff --git a/chrome/common/zip.cc b/chrome/common/zip.cc
index 01de36f30b693e85b5a4f43d4e729f5f8ca321d5..3e24b53d72fc40ac667e32a9569e98201e992208 100644
--- a/chrome/common/zip.cc
+++ b/chrome/common/zip.cc
@@ -49,7 +49,7 @@ static bool ExtractCurrentFile(unzFile zip_file,
if (filename.find(FILE_PATH_LITERAL("..")) != FilePath::StringType::npos)
return false;
- SplitString(filename, '/', &filename_parts);
+ base::SplitString(filename, '/', &filename_parts);
FilePath dest_file(dest_dir);
std::vector<FilePath::StringType>::iterator iter;
« no previous file with comments | « chrome/common/pepper_plugin_registry.cc ('k') | chrome/default_plugin/plugin_database_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698