Changeset 56397 in webkit


Ignore:
Timestamp:
Mar 23, 2010 8:47:02 AM (14 years ago)
Author:
jchaffraix@webkit.org
Message:

Unreviewed build fix.

Try to make the window buildbot happy.

  • xml/XMLHttpRequestProgressEventThrottle.cpp:
  • xml/XMLHttpRequestProgressEventThrottle.h: Move initialization of the

static const in the cpp file.

Location:
trunk/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r56396 r56397  
     12010-03-23  Julien Chaffraix  <jchaffraix@webkit.org>
     2
     3        Unreviewed build fix.
     4
     5        Try to make the window buildbot happy.
     6
     7        * xml/XMLHttpRequestProgressEventThrottle.cpp:
     8        * xml/XMLHttpRequestProgressEventThrottle.h: Move initialization of the
     9        static const in the cpp file.
     10
    1112010-03-23  Pavel Feldman  <pfeldman@chromium.org>
    212
  • trunk/WebCore/xml/XMLHttpRequestProgressEventThrottle.cpp

    r56394 r56397  
    3232
    3333namespace WebCore {
     34
     35const double XMLHttpRequestProgressEventThrottle::minimumProgressEventDispatchingIntervalInSeconds = .05; // 50 ms per specification.
    3436
    3537XMLHttpRequestProgressEventThrottle::XMLHttpRequestProgressEventThrottle(EventTarget* target)
  • trunk/WebCore/xml/XMLHttpRequestProgressEventThrottle.h

    r56394 r56397  
    5858
    5959private:
    60     static const double minimumProgressEventDispatchingIntervalInSeconds = .05; // 50 ms per specification.
     60    static const double minimumProgressEventDispatchingIntervalInSeconds;
    6161
    6262    virtual void fired();
Note: See TracChangeset for help on using the changeset viewer.