Title: [112194] trunk/Source/WebCore
Revision
112194
Author
[email protected]
Date
2012-03-26 19:17:23 -0700 (Mon, 26 Mar 2012)

Log 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):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (112193 => 112194)


--- trunk/Source/WebCore/ChangeLog	2012-03-27 02:13:08 UTC (rev 112193)
+++ trunk/Source/WebCore/ChangeLog	2012-03-27 02:17:23 UTC (rev 112194)
@@ -1,3 +1,15 @@
+2012-03-26  Charles Wei  <[email protected]>
+
+        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):
+
 2012-03-26  Brian Salomon  <[email protected]>
 
         [Skia] Remove use of deprecated Skia constant and struct field names

Modified: trunk/Source/WebCore/loader/DocumentLoader.h (112193 => 112194)


--- trunk/Source/WebCore/loader/DocumentLoader.h	2012-03-27 02:13:08 UTC (rev 112193)
+++ trunk/Source/WebCore/loader/DocumentLoader.h	2012-03-27 02:17:23 UTC (rev 112194)
@@ -183,7 +183,7 @@
         // redirects into a chain from start to finish.
         String clientRedirectSourceForHistory() const { return m_clientRedirectSourceForHistory; } // null if no client redirect occurred.
         String clientRedirectDestinationForHistory() const { return urlForHistory(); }
-        void setClientRedirectSourceForHistory(const String& clientedirectSourceForHistory) { m_clientRedirectSourceForHistory = clientedirectSourceForHistory; }
+        void setClientRedirectSourceForHistory(const String& clientRedirectSourceForHistory) { m_clientRedirectSourceForHistory = clientRedirectSourceForHistory; }
         
         String serverRedirectSourceForHistory() const { return urlForHistory() == url() ? String() : urlForHistory().string(); } // null if no server redirect occurred.
         String serverRedirectDestinationForHistory() const { return url(); }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to