Changeset 90969 in webkit


Ignore:
Timestamp:
Jul 13, 2011 6:46:19 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

[chromium] Clean undeeded WebCore:: namespace prefixing from WebBindings.
https://bugs.webkit.org/show_bug.cgi?id=64361

Patch by Noel Gordon <noel.gordon@gmail.com> on 2011-07-13
Reviewed by Kent Tamura.

  • src/WebBindings.cpp:

(WebKit::makeIntArrayImpl):
(WebKit::makeStringArrayImpl):

Location:
trunk/Source/WebKit/chromium
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/chromium/ChangeLog

    r90952 r90969  
     12011-07-13  Noel Gordon  <noel.gordon@gmail.com>
     2
     3        [chromium] Clean undeeded WebCore:: namespace prefixing from WebBindings.
     4        https://bugs.webkit.org/show_bug.cgi?id=64361
     5
     6        Reviewed by Kent Tamura.
     7
     8        * src/WebBindings.cpp:
     9        (WebKit::makeIntArrayImpl):
     10        (WebKit::makeStringArrayImpl):
     11
    1122011-07-13  James Robinson  <jamesr@chromium.org>
    213
  • trunk/Source/WebKit/chromium/src/WebBindings.cpp

    r90206 r90969  
    242242        result->Set(i, v8::Number::New(data[i]));
    243243
    244     WebCore::DOMWindow* window = WebCore::V8Proxy::retrieveWindow(WebCore::V8Proxy::currentContext());
     244    DOMWindow* window = V8Proxy::retrieveWindow(V8Proxy::currentContext());
    245245    return npCreateV8ScriptObject(0, result, window);
    246246}
     
    253253        result->Set(i, data[i].data() ? v8::String::New(reinterpret_cast<const uint16_t*>((data[i].data())), data[i].length()) : v8::String::New(""));
    254254
    255     WebCore::DOMWindow* window = WebCore::V8Proxy::retrieveWindow(WebCore::V8Proxy::currentContext());
     255    DOMWindow* window = V8Proxy::retrieveWindow(V8Proxy::currentContext());
    256256    return npCreateV8ScriptObject(0, result, window);
    257257}
Note: See TracChangeset for help on using the changeset viewer.