Title: [199765] trunk/Tools
Revision
199765
Author
[email protected]
Date
2016-04-19 23:26:24 -0700 (Tue, 19 Apr 2016)

Log Message

Unreviewed build fix after r199752.

* DumpRenderTree/win/FrameLoadDelegate.cpp:
(FrameLoadDelegate::didChangeIcons): Remove call to removed function.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (199764 => 199765)


--- trunk/Tools/ChangeLog	2016-04-20 06:02:24 UTC (rev 199764)
+++ trunk/Tools/ChangeLog	2016-04-20 06:26:24 UTC (rev 199765)
@@ -1,5 +1,12 @@
 2016-04-19  Brent Fulgham  <[email protected]>
 
+        Unreviewed build fix after r199752.
+
+        * DumpRenderTree/win/FrameLoadDelegate.cpp:
+        (FrameLoadDelegate::didChangeIcons): Remove call to removed function.
+
+2016-04-19  Brent Fulgham  <[email protected]>
+
         Remove remaining bits of dynamic <link> rel='icon' loading
         https://bugs.webkit.org/show_bug.cgi?id=156727
 

Modified: trunk/Tools/DumpRenderTree/win/FrameLoadDelegate.cpp (199764 => 199765)


--- trunk/Tools/DumpRenderTree/win/FrameLoadDelegate.cpp	2016-04-20 06:02:24 UTC (rev 199764)
+++ trunk/Tools/DumpRenderTree/win/FrameLoadDelegate.cpp	2016-04-20 06:26:24 UTC (rev 199765)
@@ -184,9 +184,8 @@
 
 HRESULT FrameLoadDelegate::didChangeIcons(_In_opt_ IWebView*, _In_opt_ IWebFrame* frame)
 {
-    if (!done && gTestRunner->dumpIconChanges())
-        printf("%s - didChangeIcons\n", descriptionSuitableForTestResult(frame).c_str());
-
+    // This feature is no longer supported. The stub is here to keep backwards compatibility
+    // with the COM interface.
     return S_OK;
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to