<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_REOPENED "
   title="REOPENED - NetworkProcess: DNS prefetch happens in the Web Process"
   href="https://bugs.webkit.org/show_bug.cgi?id=147824#c23">Comment # 23</a>
              on <a class="bz_bug_link 
          bz_status_REOPENED "
   title="REOPENED - NetworkProcess: DNS prefetch happens in the Web Process"
   href="https://bugs.webkit.org/show_bug.cgi?id=147824">bug 147824</a>
              from <span class="vcard"><a class="email" href="mailto:cgarcia&#64;igalia.com" title="Carlos Garcia Campos &lt;cgarcia&#64;igalia.com&gt;"> <span class="fn">Carlos Garcia Campos</span></a>
</span></b>
        <pre>(In reply to <a href="show_bug.cgi?id=147824#c21">comment #21</a>)
<span class="quote">&gt; Comment on <span class=""><a href="attachment.cgi?id=262588&amp;action=diff" name="attach_262588" title="Updated patch">attachment 262588</a> <a href="attachment.cgi?id=262588&amp;action=edit" title="Updated patch">[details]</a></span>
&gt; Updated patch
&gt; 
&gt; View in context:
&gt; <a href="https://bugs.webkit.org/attachment.cgi?id=262588&amp;action=review">https://bugs.webkit.org/attachment.cgi?id=262588&amp;action=review</a>
&gt; 
&gt; &gt; Source/WebCore/loader/FrameLoaderClient.h:33
&gt; &gt; +#include &quot;DNS.h&quot;
&gt; 
&gt; We should keep the implementation of the virtual function out of the header,
&gt; that way we don’t need to include DNS.h in this header. Generally speaking
&gt; it’s not so valuable to have implementations of virtual functions in the
&gt; header rather than a cpp file since it’s not common to be able to expand
&gt; them in line at the call site.</span >

I agree, the advantage in this case that we don't have a common cpp file was to avoid having the same implementation in all FrameLoader clients expect the WebKit2 one. I'll make it pure virtual then, to ensure all clients implement it.

<span class="quote">&gt; &gt; Source/WebKit2/WebProcess/WebPage/ios/WebPageIOS.mm:632
&gt; &gt; +        m_page-&gt;mainFrame().loader().client().prefetchDNS(downcast&lt;Element&gt;(*node).absoluteLinkURL().host());
&gt; 
&gt; Are we guaranteed that m_page is non-null?</span >

Same question ap made in <a href="show_bug.cgi?id=147824#c5">comment #5</a>, which confirms I should add an assert there :-)</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>