Title: [99610] trunk/Tools
Revision
99610
Author
[email protected]
Date
2011-11-08 12:53:55 -0800 (Tue, 08 Nov 2011)

Log Message

Revert check-in. My mistake.

Modified Paths


Diff

Modified: trunk/Tools/MiniBrowser/mac/BrowserWindowController.m (99609 => 99610)


--- trunk/Tools/MiniBrowser/mac/BrowserWindowController.m	2011-11-08 20:51:14 UTC (rev 99609)
+++ trunk/Tools/MiniBrowser/mac/BrowserWindowController.m	2011-11-08 20:53:55 UTC (rev 99610)
@@ -325,6 +325,11 @@
     LOG(@"didRunInsecureContentForFrame");
 }
 
+static void didDetectXSSForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void *clientInfo) 
+{ 
+    LOG(@"didDetectXSSForFrame"); 
+}
+ 
 static void didStartProgress(WKPageRef page, const void *clientInfo)
 {
     [(BrowserWindowController *)clientInfo didStartProgress];
@@ -604,6 +609,7 @@
         didChangeBackForwardList,
         0, // shouldGoToBackForwardItem
         0,  // didFailToInitializePlugin
+        didDetectXSSForFrame,
     };
     WKPageSetPageLoaderClient(_webView.pageRef, &loadClient);
     

Modified: trunk/Tools/WebKitTestRunner/TestController.cpp (99609 => 99610)


--- trunk/Tools/WebKitTestRunner/TestController.cpp	2011-11-08 20:51:14 UTC (rev 99609)
+++ trunk/Tools/WebKitTestRunner/TestController.cpp	2011-11-08 20:53:55 UTC (rev 99610)
@@ -387,6 +387,7 @@
         0, // didChangeBackForwardList
         0, // shouldGoToBackForwardListItem
         0, // didRunInsecureContentForFrame
+        0  // didDetectXSSForFrame
     };
     WKPageSetPageLoaderClient(m_mainWebView->page(), &pageLoaderClient);
 }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to