Title: [149081] trunk/Source/WebCore
Revision
149081
Author
[email protected]
Date
2013-04-24 17:51:29 -0700 (Wed, 24 Apr 2013)

Log Message

Add efl to JSInspectorFrontendHost::port()
https://bugs.webkit.org/show_bug.cgi?id=115137

Patch by Seokju Kwon <[email protected]> on 2013-04-24
Reviewed by Timothy Hatcher.

No new tests, because there is no change in behavior.

* bindings/js/JSInspectorFrontendHostCustom.cpp:
(WebCore::JSInspectorFrontendHost::port):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (149080 => 149081)


--- trunk/Source/WebCore/ChangeLog	2013-04-25 00:44:13 UTC (rev 149080)
+++ trunk/Source/WebCore/ChangeLog	2013-04-25 00:51:29 UTC (rev 149081)
@@ -1,3 +1,15 @@
+2013-04-24  Seokju Kwon  <[email protected]>
+
+        Add efl to JSInspectorFrontendHost::port()
+        https://bugs.webkit.org/show_bug.cgi?id=115137
+
+        Reviewed by Timothy Hatcher.
+
+        No new tests, because there is no change in behavior.
+
+        * bindings/js/JSInspectorFrontendHostCustom.cpp:
+        (WebCore::JSInspectorFrontendHost::port):
+
 2013-04-24  Kangil Han  <[email protected]>
 
         Function parameter quotePair can be passed by reference

Modified: trunk/Source/WebCore/bindings/js/JSInspectorFrontendHostCustom.cpp (149080 => 149081)


--- trunk/Source/WebCore/bindings/js/JSInspectorFrontendHostCustom.cpp	2013-04-25 00:44:13 UTC (rev 149080)
+++ trunk/Source/WebCore/bindings/js/JSInspectorFrontendHostCustom.cpp	2013-04-25 00:51:29 UTC (rev 149081)
@@ -79,6 +79,8 @@
     DEFINE_STATIC_LOCAL(const String, port, (ASCIILiteral("gtk")));
 #elif PLATFORM(WX)
     DEFINE_STATIC_LOCAL(const String, port, (ASCIILiteral("wx")));
+#elif PLATFORM(EFL)
+    DEFINE_STATIC_LOCAL(const String, port, (ASCIILiteral("efl")));
 #else
     DEFINE_STATIC_LOCAL(const String, port, (ASCIILiteral("unknown")));
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to