Changeset 64271 in webkit


Ignore:
Timestamp:
Jul 29, 2010 5:00:17 AM (14 years ago)
Author:
andreip@google.com
Message:

2010-07-29 Andrei Popescu <andreip@google.com>

Reviewed by Jeremy Orlow.

[IndexedDB] WebDOMStringList ctor is not exported and causes link errors for the multi-dll chromium build
https://bugs.webkit.org/show_bug.cgi?id=43186

Add WEBKIT_API to WebDOMStringList default ctor.

  • public/WebDOMStringList.h:
Location:
trunk/WebKit/chromium
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/chromium/ChangeLog

    r64269 r64271  
     12010-07-29  Andrei Popescu  <andreip@google.com>
     2
     3        Reviewed by Jeremy Orlow.
     4
     5        [IndexedDB] WebDOMStringList ctor is not exported and causes link errors for the multi-dll chromium build
     6        https://bugs.webkit.org/show_bug.cgi?id=43186
     7
     8        Add WEBKIT_API to WebDOMStringList default ctor.
     9
     10        * public/WebDOMStringList.h:
     11
    1122010-07-29  Satish Sampath  <satish@chromium.org>
    213
  • trunk/WebKit/chromium/public/WebDOMStringList.h

    r64209 r64271  
    4747    ~WebDOMStringList() { reset(); }
    4848
    49     WebDOMStringList();
     49    WEBKIT_API WebDOMStringList();
    5050    WebDOMStringList(const WebDOMStringList& l) { assign(l); }
    5151    WebDOMStringList& operator=(const WebDOMStringList& l)
Note: See TracChangeset for help on using the changeset viewer.