Changeset 149081 in webkit


Ignore:
Timestamp:
Apr 24, 2013 5:51:29 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

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

Patch by Seokju Kwon <Seokju Kwon> 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):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r149080 r149081  
     12013-04-24  Seokju Kwon  <seokju.kwon@gmail.com>
     2
     3        Add efl to JSInspectorFrontendHost::port()
     4        https://bugs.webkit.org/show_bug.cgi?id=115137
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        No new tests, because there is no change in behavior.
     9
     10        * bindings/js/JSInspectorFrontendHostCustom.cpp:
     11        (WebCore::JSInspectorFrontendHost::port):
     12
    1132013-04-24  Kangil Han  <kangil.han@samsung.com>
    214
  • trunk/Source/WebCore/bindings/js/JSInspectorFrontendHostCustom.cpp

    r129574 r149081  
    8080#elif PLATFORM(WX)
    8181    DEFINE_STATIC_LOCAL(const String, port, (ASCIILiteral("wx")));
     82#elif PLATFORM(EFL)
     83    DEFINE_STATIC_LOCAL(const String, port, (ASCIILiteral("efl")));
    8284#else
    8385    DEFINE_STATIC_LOCAL(const String, port, (ASCIILiteral("unknown")));
Note: See TracChangeset for help on using the changeset viewer.