WKPageGetPluginInformationDisplayNameKey doesn't return the right key
https://bugs.webkit.org/show_bug.cgi?id=116188

Reviewed by Andreas Kling.

* UIProcess/API/C/WKPage.cpp:
(WKPageGetPluginInformationDisplayNameKey):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@150151 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/Source/WebKit2/ChangeLog b/Source/WebKit2/ChangeLog
index f3e6d66..9971651 100644
--- a/Source/WebKit2/ChangeLog
+++ b/Source/WebKit2/ChangeLog
@@ -1,3 +1,13 @@
+2013-05-15  Anders Carlsson  <andersca@apple.com>
+
+        WKPageGetPluginInformationDisplayNameKey doesn't return the right key
+        https://bugs.webkit.org/show_bug.cgi?id=116188
+
+        Reviewed by Andreas Kling.
+
+        * UIProcess/API/C/WKPage.cpp:
+        (WKPageGetPluginInformationDisplayNameKey):
+
 2013-05-15  Alexey Proskuryakov  <ap@apple.com>
 
         More fixing after WebProcessShim renaming in r149074.
diff --git a/Source/WebKit2/UIProcess/API/C/WKPage.cpp b/Source/WebKit2/UIProcess/API/C/WKPage.cpp
index d502c9a..383b641 100644
--- a/Source/WebKit2/UIProcess/API/C/WKPage.cpp
+++ b/Source/WebKit2/UIProcess/API/C/WKPage.cpp
@@ -865,7 +865,7 @@
 
 WKStringRef WKPageGetPluginInformationDisplayNameKey()
 {
-    return WKPluginInformationBundleVersionKey();
+    return WKPluginInformationDisplayNameKey();
 }
 
 WKStringRef WKPageGetPluginInformationFrameURLKey()