Changeset 69670 in webkit


Ignore:
Timestamp:
Oct 13, 2010 10:26:50 AM (14 years ago)
Author:
andreip@google.com
Message:

2010-10-11 Andrei Popescu <andreip@google.com>

Reviewed by Jeremy Orlow.

[Chromium] Cleanup WebIDBFactory::open once the Chromium plumbing has landed.
https://bugs.webkit.org/show_bug.cgi?id=47531

Remove the temporary open() method since the appropriate Chromium plumbing was
added in http://codereview.chromium.org/3729003/

  • public/WebIDBFactory.h: (WebKit::WebIDBFactory::open):
Location:
trunk/WebKit/chromium
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/chromium/ChangeLog

    r69668 r69670  
     12010-10-11  Andrei Popescu  <andreip@google.com>
     2
     3        Reviewed by Jeremy Orlow.
     4
     5        [Chromium] Cleanup WebIDBFactory::open once the Chromium plumbing has landed.
     6        https://bugs.webkit.org/show_bug.cgi?id=47531
     7
     8        Remove the temporary open() method since the appropriate Chromium plumbing was
     9        added in http://codereview.chromium.org/3729003/
     10
     11        * public/WebIDBFactory.h:
     12        (WebKit::WebIDBFactory::open):
     13
    1142010-10-13  Adam Barth  <abarth@webkit.org>
    215
  • trunk/WebKit/chromium/public/WebIDBFactory.h

    r69435 r69670  
    5555    virtual void open(const WebString& name, const WebString& description, WebIDBCallbacks* callbacks, const WebSecurityOrigin& origin, WebFrame* webFrame, const WebString& dataDir, unsigned long long maximumSize)
    5656    {
    57         // FIXME: Remove the line below and renable this assertion.
    58         open(name, description, callbacks, origin, webFrame, dataDir);
    59         // WEBKIT_ASSERT_NOT_REACHED();
    60     }
    61     // FIXME: Remove once we update Chromium side.
    62     virtual void open(const WebString& name, const WebString& description, WebIDBCallbacks* callbacks, const WebSecurityOrigin& origin, WebFrame* webFrame, const WebString& dataDir)
    63     {
    64         open(name, description, callbacks, origin, webFrame, dataDir, 5 * 1024 * 1024);
     57        WEBKIT_ASSERT_NOT_REACHED();
    6558    }
    6659
Note: See TracChangeset for help on using the changeset viewer.