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

Unified Diff: chrome/default_plugin/plugin_database_handler.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/zip.cc ('k') | chrome/installer/util/compat_checks.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/default_plugin/plugin_database_handler.cc
diff --git a/chrome/default_plugin/plugin_database_handler.cc b/chrome/default_plugin/plugin_database_handler.cc
index d6e06e8b9d319214089db77cd5b56355191db96b..aadcabc67ce34c14bd14670f62ac639ea63ae0c7 100644
--- a/chrome/default_plugin/plugin_database_handler.cc
+++ b/chrome/default_plugin/plugin_database_handler.cc
@@ -346,8 +346,9 @@ bool PluginDatabaseHandler::ReadPluginInfo(_xmlNode* plugin_node,
plugin_detail->download_url =
reinterpret_cast<const char*>(plugin_download_url_val->content);
- SplitString(reinterpret_cast<const char*>(plugin_mime_type_vals->content),
- kMimeTypeSeparator, &plugin_detail->mime_types);
+ base::SplitString(
+ reinterpret_cast<const char*>(plugin_mime_type_vals->content),
+ kMimeTypeSeparator, &plugin_detail->mime_types);
plugin_detail->language =
reinterpret_cast<const char*>(plugin_lang_val->content);
« no previous file with comments | « chrome/common/zip.cc ('k') | chrome/installer/util/compat_checks.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698