Title: [186240] trunk/Source/WebKit/mac
Revision
186240
Author
timothy_hor...@apple.com
Date
2015-07-02 15:44:04 -0700 (Thu, 02 Jul 2015)

Log Message

Fix the build.

Rubber-stamped by Brady Eidson.

* WebView/WebView.mm:
(-[WebView initSimpleHTMLDocumentWithStyle:frame:preferences:groupName:]):
Http, not HTTP, for settings generator reasons.

Modified Paths

Diff

Modified: trunk/Source/WebKit/mac/ChangeLog (186239 => 186240)


--- trunk/Source/WebKit/mac/ChangeLog	2015-07-02 22:32:27 UTC (rev 186239)
+++ trunk/Source/WebKit/mac/ChangeLog	2015-07-02 22:44:04 UTC (rev 186240)
@@ -1,3 +1,13 @@
+2015-07-02  Timothy Horton  <timothy_hor...@apple.com>
+
+        Fix the build.
+
+        Rubber-stamped by Brady Eidson.
+
+        * WebView/WebView.mm:
+        (-[WebView initSimpleHTMLDocumentWithStyle:frame:preferences:groupName:]):
+        Http, not HTTP, for settings generator reasons.
+
 2015-07-02  Brady Eidson  <beid...@apple.com>
 
         Add preference to disable all http-equiv.

Modified: trunk/Source/WebKit/mac/WebView/WebView.mm (186239 => 186240)


--- trunk/Source/WebKit/mac/WebView/WebView.mm	2015-07-02 22:32:27 UTC (rev 186239)
+++ trunk/Source/WebKit/mac/WebView/WebView.mm	2015-07-02 22:44:04 UTC (rev 186240)
@@ -1233,7 +1233,7 @@
     _private->page->settings().setMinimumFontSize([_private->preferences minimumFontSize]);
 
     // This is a workaround for <rdar://problem/21309911>.
-    _private->page->settings().setHTTPEquivEnabled([_private->preferences httpEquivEnabled]);
+    _private->page->settings().setHttpEquivEnabled([_private->preferences httpEquivEnabled]);
 
     _private->page->setGroupName(groupName);
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to