Title: [164083] trunk/Source/WebKit2
Revision
164083
Author
[email protected]
Date
2014-02-13 17:53:43 -0800 (Thu, 13 Feb 2014)

Log Message

Add -[WKWebView stopLoading:]
https://bugs.webkit.org/show_bug.cgi?id=128784

Reviewed by Dan Bernstein.

* UIProcess/API/Cocoa/WKWebView.h:
* UIProcess/API/Cocoa/WKWebView.mm:
(-[WKWebView stopLoading:]):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (164082 => 164083)


--- trunk/Source/WebKit2/ChangeLog	2014-02-14 01:49:24 UTC (rev 164082)
+++ trunk/Source/WebKit2/ChangeLog	2014-02-14 01:53:43 UTC (rev 164083)
@@ -1,5 +1,16 @@
 2014-02-13  Anders Carlsson  <[email protected]>
 
+        Add -[WKWebView stopLoading:]
+        https://bugs.webkit.org/show_bug.cgi?id=128784
+
+        Reviewed by Dan Bernstein.
+
+        * UIProcess/API/Cocoa/WKWebView.h:
+        * UIProcess/API/Cocoa/WKWebView.mm:
+        (-[WKWebView stopLoading:]):
+
+2014-02-13  Anders Carlsson  <[email protected]>
+
         Add -[WKWebView activeURL]
         https://bugs.webkit.org/show_bug.cgi?id=128777
 

Modified: trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.h (164082 => 164083)


--- trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.h	2014-02-14 01:49:24 UTC (rev 164082)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.h	2014-02-14 01:53:43 UTC (rev 164083)
@@ -86,6 +86,8 @@
  */
 - (WKNavigation *)goToBackForwardListItem:(WKBackForwardListItem *)item;
 
+- (IBAction)stopLoading:(id)sender;
+
 @property (nonatomic, readonly) NSString *title;
 
 /*! @abstract The active URL. @link WKWebView @/link is KVO-compliant for this property.

Modified: trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.mm (164082 => 164083)


--- trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.mm	2014-02-14 01:49:24 UTC (rev 164082)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.mm	2014-02-14 01:53:43 UTC (rev 164083)
@@ -187,6 +187,11 @@
     return nil;
 }
 
+- (IBAction)stopLoading:(id)sender
+{
+    _page->stopLoading();
+}
+
 - (NSString *)title
 {
     return _page->pageLoadState().title();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to