Changeset 53689 in webkit


Ignore:
Timestamp:
Jan 22, 2010 1:42:09 AM (14 years ago)
Author:
yurys@chromium.org
Message:

emikhatsky <yurys@chromium.org>

Reviewed by Pavel Feldman.

Add stub implementation of dispatchOnInjectedScript method so that
Chromium source can compile against it and the main fix for the bug
28622 can be landed without breaking Chromium build.

https://bugs.webkit.org/show_bug.cgi?id=28622

  • inspector/InspectorBackend.h: (WebCore::InspectorBackend::dispatchOnInjectedScript):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r53688 r53689  
     12010-01-22  Yury Semikhatsky  <yurys@chromium.org>
     2
     3        Reviewed by Pavel Feldman.
     4
     5        Add stub implementation of dispatchOnInjectedScript method so that
     6        Chromium source can compile against it and the main fix for the bug
     7        28622 can be landed without breaking Chromium build.
     8
     9        https://bugs.webkit.org/show_bug.cgi?id=28622
     10
     11        * inspector/InspectorBackend.h:
     12        (WebCore::InspectorBackend::dispatchOnInjectedScript):
     13
    1142010-01-22  Kwang Yul Seo  <skyul@company100.net>
    215
  • trunk/WebCore/inspector/InspectorBackend.h

    r53558 r53689  
    106106
    107107    void dispatchOnInjectedScript(long callId, const String& methodName, const String& arguments, bool async);
     108    // FIXME(32554): Temporarily we have two similar methods so that clients can compile against both signatures.
     109    // The method above will be removed soon.
     110    void dispatchOnInjectedScript(long, long, const String&, const String&, bool) { }
    108111    void getChildNodes(long callId, long nodeId);
    109112    void setAttribute(long callId, long elementId, const String& name, const String& value);
Note: See TracChangeset for help on using the changeset viewer.