Title: [114186] trunk/Source/WebKit/chromium
Revision
114186
Author
[email protected]
Date
2012-04-13 17:27:34 -0700 (Fri, 13 Apr 2012)

Log Message

[chromium] Remove fallback code for "Missing plug-in" string.
https://bugs.webkit.org/show_bug.cgi?id=81907

Patch by Bernhard Bauer <[email protected]> on 2012-04-13
Reviewed by Adam Barth.

* src/LocalizedStrings.cpp:
(WebCore::missingPluginText):

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (114185 => 114186)


--- trunk/Source/WebKit/chromium/ChangeLog	2012-04-14 00:26:25 UTC (rev 114185)
+++ trunk/Source/WebKit/chromium/ChangeLog	2012-04-14 00:27:34 UTC (rev 114186)
@@ -1,3 +1,13 @@
+2012-04-13  Bernhard Bauer  <[email protected]>
+
+        [chromium] Remove fallback code for "Missing plug-in" string.
+        https://bugs.webkit.org/show_bug.cgi?id=81907
+
+        Reviewed by Adam Barth.
+
+        * src/LocalizedStrings.cpp:
+        (WebCore::missingPluginText):
+
 2012-04-11  James Robinson  <[email protected]>
 
         [chromium] Remove unused compositeToTexture / compositeOffscreen setting

Modified: trunk/Source/WebKit/chromium/src/LocalizedStrings.cpp (114185 => 114186)


--- trunk/Source/WebKit/chromium/src/LocalizedStrings.cpp	2012-04-14 00:26:25 UTC (rev 114185)
+++ trunk/Source/WebKit/chromium/src/LocalizedStrings.cpp	2012-04-14 00:27:34 UTC (rev 114186)
@@ -206,11 +206,7 @@
     
 String missingPluginText()
 {
-    String text = query(WebLocalizedString::MissingPluginText);
-    if (!text.isEmpty())
-        return text;
-    notImplemented();
-    return String("Missing Plug-in");
+    return query(WebLocalizedString::MissingPluginText);
 }
 
 String crashedPluginText()
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to