Changeset 112194 in webkit


Ignore:
Timestamp:
Mar 26, 2012 7:17:23 PM (12 years ago)
Author:
charles.wei@torchmobile.com.cn
Message:

Fix minor spell error in DocumentLoader.h
https://bugs.webkit.org/show_bug.cgi?id=82141

Reviewed by Nate Chapin.

Just fix spell error, no new tests.

  • loader/DocumentLoader.h:

(WebCore::DocumentLoader::setClientRedirectSourceForHistory):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r112193 r112194  
     12012-03-26  Charles Wei  <charles.wei@torchmobile.com.cn>
     2
     3        Fix minor spell error in DocumentLoader.h
     4        https://bugs.webkit.org/show_bug.cgi?id=82141
     5
     6        Reviewed by Nate Chapin.
     7
     8        Just fix spell error, no new tests.
     9
     10        * loader/DocumentLoader.h:
     11        (WebCore::DocumentLoader::setClientRedirectSourceForHistory):
     12
    1132012-03-26  Brian Salomon  <bsalomon@google.com>
    214
  • trunk/Source/WebCore/loader/DocumentLoader.h

    r112144 r112194  
    184184        String clientRedirectSourceForHistory() const { return m_clientRedirectSourceForHistory; } // null if no client redirect occurred.
    185185        String clientRedirectDestinationForHistory() const { return urlForHistory(); }
    186         void setClientRedirectSourceForHistory(const String& clientedirectSourceForHistory) { m_clientRedirectSourceForHistory = clientedirectSourceForHistory; }
     186        void setClientRedirectSourceForHistory(const String& clientRedirectSourceForHistory) { m_clientRedirectSourceForHistory = clientRedirectSourceForHistory; }
    187187       
    188188        String serverRedirectSourceForHistory() const { return urlForHistory() == url() ? String() : urlForHistory().string(); } // null if no server redirect occurred.
Note: See TracChangeset for help on using the changeset viewer.