Title: [137041] trunk/Source/WebKit/blackberry
Revision
137041
Author
[email protected]
Date
2012-12-08 10:27:55 -0800 (Sat, 08 Dec 2012)

Log Message

[BlackBerry] Remove about:credits
https://bugs.webkit.org/show_bug.cgi?id=104399

Patch by Chris Hutten-Czapski <[email protected]> on 2012-12-08
Reviewed by Rob Buis.

Just a simple removal.

* WebKitSupport/AboutData.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebKit/blackberry/ChangeLog (137040 => 137041)


--- trunk/Source/WebKit/blackberry/ChangeLog	2012-12-08 18:10:29 UTC (rev 137040)
+++ trunk/Source/WebKit/blackberry/ChangeLog	2012-12-08 18:27:55 UTC (rev 137041)
@@ -1,3 +1,14 @@
+2012-12-08  Chris Hutten-Czapski  <[email protected]>
+
+        [BlackBerry] Remove about:credits
+        https://bugs.webkit.org/show_bug.cgi?id=104399
+
+        Reviewed by Rob Buis.
+
+        Just a simple removal.
+
+        * WebKitSupport/AboutData.cpp:
+
 2012-12-08  Rob Buis  <[email protected]>
 
         [BlackBerry] Remove no-op line in WebPage.cpp

Modified: trunk/Source/WebKit/blackberry/WebKitSupport/AboutData.cpp (137040 => 137041)


--- trunk/Source/WebKit/blackberry/WebKitSupport/AboutData.cpp	2012-12-08 18:10:29 UTC (rev 137040)
+++ trunk/Source/WebKit/blackberry/WebKitSupport/AboutData.cpp	2012-12-08 18:27:55 UTC (rev 137041)
@@ -31,7 +31,6 @@
 #include <BlackBerryPlatformLog.h>
 #include <BlackBerryPlatformMemory.h>
 #include <BlackBerryPlatformSettings.h>
-#include <BlackBerryPlatformWebKitCredits.h>
 #include <BuildInformation.h>
 #include <heap/Heap.h>
 #include <process.h>
@@ -499,18 +498,6 @@
     return result;
 }
 
-static String creditsPage()
-{
-    String result;
-
-    result.append(writeHeader("Credits"));
-    result.append(String("<style> .about {padding:14px;} </style>"));
-    result.append(String(BlackBerry::Platform::WEBKITCREDITS));
-    result.append(String("</body></html>"));
-
-    return result;
-}
-
 static String cookiePage()
 {
     String result;
@@ -524,9 +511,6 @@
 
 String aboutData(String aboutWhat)
 {
-    if (equalIgnoringCase(aboutWhat, "credits"))
-        return creditsPage();
-
     if (aboutWhat.startsWith("cache"))
         return cachePage(aboutWhat.substring(5));
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to