Changeset 140372 in webkit


Ignore:
Timestamp:
Jan 21, 2013 5:04:34 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[EFL][WK2] Implement WebInspector::localizedStringsURL() on EFL
https://bugs.webkit.org/show_bug.cgi?id=107363

Patch by Sudarsana Nagineni <sudarsana.nagineni@intel.com> on 2013-01-21
Reviewed by Benjamin Poulain.

Implement WebInspector::localizedStringsURL() method to return the
file URL of the localizedStrings.js.

This prevents printing warnings about "Localized string not found" in
the console and fixes Web inspector related failing tests on the bots.

  • WebProcess/WebPage/efl/WebInspectorEfl.cpp:

(WebKit::WebInspector::localizedStringsURL):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r140367 r140372  
     12013-01-21  Sudarsana Nagineni  <sudarsana.nagineni@intel.com>
     2
     3        [EFL][WK2] Implement WebInspector::localizedStringsURL() on EFL
     4        https://bugs.webkit.org/show_bug.cgi?id=107363
     5
     6        Reviewed by Benjamin Poulain.
     7
     8        Implement WebInspector::localizedStringsURL() method to return the
     9        file URL of the localizedStrings.js.
     10
     11        This prevents printing warnings about "Localized string not found" in
     12        the console and fixes Web inspector related failing tests on the bots.
     13
     14        * WebProcess/WebPage/efl/WebInspectorEfl.cpp:
     15        (WebKit::WebInspector::localizedStringsURL):
     16
    1172013-01-21  Kiran Muppala  <cmuppala@apple.com>
    218
  • trunk/Source/WebKit2/WebProcess/WebPage/efl/WebInspectorEfl.cpp

    r95901 r140372  
    2929#if ENABLE(INSPECTOR)
    3030
    31 #include <WebCore/NotImplemented.h>
     31#include <WebCore/EflInspectorUtilities.h>
    3232#include <wtf/text/WTFString.h>
    3333
     
    3636String WebInspector::localizedStringsURL() const
    3737{
    38     notImplemented();
    39     return String();
     38    return "file://" + WebCore::inspectorResourcePath() + "/localizedStrings.js";
    4039}
    4140
Note: See TracChangeset for help on using the changeset viewer.