Title: [121931] trunk/Source/WebKit/blackberry
Revision
121931
Author
[email protected]
Date
2012-07-05 18:05:46 -0700 (Thu, 05 Jul 2012)

Log Message

[BlackBerry] Fix the build error introduced by enabling CUSTOM_THEME_HANDLER
https://bugs.webkit.org/show_bug.cgi?id=90588

Reviewed by Rob Buis.

Fix the build error introduced by enabling CUSTOM_THEME_HANDLER.
* WebCoreSupport/ChromeClientBlackBerry.cpp:
(WebCore::ChromeClientBlackBerry::isProtocolHandlerRegistered):

Modified Paths

Diff

Modified: trunk/Source/WebKit/blackberry/ChangeLog (121930 => 121931)


--- trunk/Source/WebKit/blackberry/ChangeLog	2012-07-06 00:26:39 UTC (rev 121930)
+++ trunk/Source/WebKit/blackberry/ChangeLog	2012-07-06 01:05:46 UTC (rev 121931)
@@ -1,3 +1,14 @@
+2012-07-05  Charles Wei  <[email protected]>
+
+        [BlackBerry] Fix the build error introduced by enabling CUSTOM_THEME_HANDLER
+        https://bugs.webkit.org/show_bug.cgi?id=90588
+
+        Reviewed by Rob Buis.
+
+        Fix the build error introduced by enabling CUSTOM_THEME_HANDLER.
+        * WebCoreSupport/ChromeClientBlackBerry.cpp:
+        (WebCore::ChromeClientBlackBerry::isProtocolHandlerRegistered):
+
 2012-07-04  Hanna Ma  <[email protected]>
 
         [BlackBerry] Implement device metrics for blackberry.

Modified: trunk/Source/WebKit/blackberry/WebCoreSupport/ChromeClientBlackBerry.cpp (121930 => 121931)


--- trunk/Source/WebKit/blackberry/WebCoreSupport/ChromeClientBlackBerry.cpp	2012-07-06 00:26:39 UTC (rev 121930)
+++ trunk/Source/WebKit/blackberry/WebCoreSupport/ChromeClientBlackBerry.cpp	2012-07-06 01:05:46 UTC (rev 121931)
@@ -810,9 +810,9 @@
 }
 
 #if ENABLE(CUSTOM_SCHEME_HANDLER)
-CustomHandlersState ChromeClientBlackBerry::isProtocolHandlerRegistered(const String&, const String&, const String&)
+ChromeClient::CustomHandlersState ChromeClientBlackBerry::isProtocolHandlerRegistered(const String&, const String&, const String&)
 {
-    return CustomHandlersDeclined;
+    return ChromeClient::CustomHandlersDeclined;
 }
 
 void ChromeClientBlackBerry::unregisterProtocolHandler(const String&, const String&, const String&)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to