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

Unified Diff: webkit/plugins/npapi/webplugin_delegate_impl_win.cc

Issue 10823434: [6] Moves CreateVersionFromString to plugin_utils and updates the callers. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 4 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
Index: webkit/plugins/npapi/webplugin_delegate_impl_win.cc
diff --git a/webkit/plugins/npapi/webplugin_delegate_impl_win.cc b/webkit/plugins/npapi/webplugin_delegate_impl_win.cc
index a0a4f188ab560a7a3487fce3f22346c3a34487a4..bf3fd100e4ca122850672f7edf041b13612c7b3d 100644
--- a/webkit/plugins/npapi/webplugin_delegate_impl_win.cc
+++ b/webkit/plugins/npapi/webplugin_delegate_impl_win.cc
@@ -256,7 +256,7 @@ std::wstring GetKeyPath(HKEY key) {
int GetPluginMajorVersion(const WebPluginInfo& plugin_info) {
Version plugin_version;
- PluginGroup::CreateVersionFromString(plugin_info.version, &plugin_version);
+ WebPluginInfo::CreateVersionFromString(plugin_info.version, &plugin_version);
int major_version = 0;
if (plugin_version.IsValid())

Powered by Google App Engine
This is Rietveld 408576698