Changeset 52974 in webkit


Ignore:
Timestamp:
Jan 7, 2010 11:08:52 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-01-07 Mike Belshe <mbelshe@chromium.org>

Reviewed by Darin Adler.

Fix Spdy casing to match style guide.

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

  • platform/network/chromium/ResourceResponse.h: (WebCore::ResourceResponse::ResourceResponse): (WebCore::ResourceResponse::wasFetchedViaSPDY): (WebCore::ResourceResponse::setWasFetchedViaSPDY):

2010-01-07 Mike Belshe <mbelshe@chromium.org>

Reviewed by Darin Adler.

Fix Spdy casing to match style guide.

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

  • public/WebURLResponse.h:
  • src/WebURLResponse.cpp: (WebKit::WebURLResponse::wasFetchedViaSPDY): (WebKit::WebURLResponse::setWasFetchedViaSPDY):
Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r52972 r52974  
     12010-01-07  Mike Belshe  <mbelshe@chromium.org>
     2
     3        Reviewed by Darin Adler.
     4
     5        Fix Spdy casing to match style guide.
     6
     7        https://bugs.webkit.org/show_bug.cgi?id=33326
     8
     9        * platform/network/chromium/ResourceResponse.h:
     10        (WebCore::ResourceResponse::ResourceResponse):
     11        (WebCore::ResourceResponse::wasFetchedViaSPDY):
     12        (WebCore::ResourceResponse::setWasFetchedViaSPDY):
     13
    1142010-01-07  Daniel Bates  <dbates@rim.com>
    215
  • trunk/WebCore/platform/network/chromium/ResourceResponse.h

    r52898 r52974  
    3939            : m_isContentFiltered(false)
    4040            , m_appCacheID(0)
    41             , m_wasFetchedViaSpdy(false)
     41            , m_wasFetchedViaSPDY(false)
    4242        {
    4343        }
     
    4747            , m_isContentFiltered(false)
    4848            , m_appCacheID(0)
    49             , m_wasFetchedViaSpdy(false)
     49            , m_wasFetchedViaSPDY(false)
    5050        {
    5151        }
     
    7575        }
    7676
    77         bool wasFetchedViaSpdy() const { return m_wasFetchedViaSpdy; }
    78         void setWasFetchedViaSpdy(bool value)
     77        bool wasFetchedViaSPDY() const { return m_wasFetchedViaSPDY; }
     78        void setWasFetchedViaSPDY(bool value)
    7979        {
    80             m_wasFetchedViaSpdy = value;
     80            m_wasFetchedViaSPDY = value;
    8181        }
    8282
     
    106106        KURL m_appCacheManifestURL;
    107107
    108         bool m_wasFetchedViaSpdy;
     108        bool m_wasFetchedViaSPDY;
    109109    };
    110110
  • trunk/WebKit/chromium/ChangeLog

    r52972 r52974  
     12010-01-07  Mike Belshe  <mbelshe@chromium.org>
     2
     3        Reviewed by Darin Adler.
     4
     5        Fix Spdy casing to match style guide.
     6
     7        https://bugs.webkit.org/show_bug.cgi?id=33326
     8
     9        * public/WebURLResponse.h:
     10        * src/WebURLResponse.cpp:
     11        (WebKit::WebURLResponse::wasFetchedViaSPDY):
     12        (WebKit::WebURLResponse::setWasFetchedViaSPDY):
     13
    1142010-01-07  Daniel Bates  <dbates@rim.com>
    215
  • trunk/WebKit/chromium/public/WebURLResponse.h

    r52898 r52974  
    121121    // Flag whether this request was loaded via the SPDY protocol or not.
    122122    // SPDY is an experimental web protocol, see http://dev.chromium.org/spdy
    123     WEBKIT_API bool wasFetchedViaSpdy() const;
    124     WEBKIT_API void setWasFetchedViaSpdy(bool);
     123    WEBKIT_API bool wasFetchedViaSPDY() const;
     124    WEBKIT_API void setWasFetchedViaSPDY(bool);
    125125
    126126protected:
  • trunk/WebKit/chromium/src/WebURLResponse.cpp

    r52898 r52974  
    256256}
    257257
    258 bool WebURLResponse::wasFetchedViaSpdy() const
    259 {
    260     return m_private->m_resourceResponse->wasFetchedViaSpdy();
    261 }
    262 
    263 void WebURLResponse::setWasFetchedViaSpdy(bool value)
    264 {
    265     m_private->m_resourceResponse->setWasFetchedViaSpdy(value);
     258bool WebURLResponse::wasFetchedViaSPDY() const
     259{
     260    return m_private->m_resourceResponse->wasFetchedViaSPDY();
     261}
     262
     263void WebURLResponse::setWasFetchedViaSPDY(bool value)
     264{
     265    m_private->m_resourceResponse->setWasFetchedViaSPDY(value);
    266266}
    267267
Note: See TracChangeset for help on using the changeset viewer.