<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body><span class="vcard"><a class="email" href="mailto:darin&#64;apple.com" title="Darin Adler &lt;darin&#64;apple.com&gt;"> <span class="fn">Darin Adler</span></a>
</span> changed
              <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - We should also store the time information for recent searches"
   href="https://bugs.webkit.org/show_bug.cgi?id=148388">bug 148388</a>
        <br>
             <table border="1" cellspacing="0" cellpadding="8">
          <tr>
            <th>What</th>
            <th>Removed</th>
            <th>Added</th>
          </tr>

         <tr>
           <td style="text-align:right;">Attachment #262998 Flags</td>
           <td>review?
           </td>
           <td>review+
           </td>
         </tr></table>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - We should also store the time information for recent searches"
   href="https://bugs.webkit.org/show_bug.cgi?id=148388#c47">Comment # 47</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - We should also store the time information for recent searches"
   href="https://bugs.webkit.org/show_bug.cgi?id=148388">bug 148388</a>
              from <span class="vcard"><a class="email" href="mailto:darin&#64;apple.com" title="Darin Adler &lt;darin&#64;apple.com&gt;"> <span class="fn">Darin Adler</span></a>
</span></b>
        <pre>Comment on <span class=""><a href="attachment.cgi?id=262998&amp;action=diff" name="attach_262998" title="Revised Patch">attachment 262998</a> <a href="attachment.cgi?id=262998&amp;action=edit" title="Revised Patch">[details]</a></span>
Revised Patch

View in context: <a href="https://bugs.webkit.org/attachment.cgi?id=262998&amp;action=review">https://bugs.webkit.org/attachment.cgi?id=262998&amp;action=review</a>

<span class="quote">&gt; Source/WebCore/platform/SearchPopupMenu.h:42
&gt; +    virtual void saveRecentSearches(const AtomicString&amp; name, const Vector&lt;RecentSearch&gt;&amp; searchItems) = 0;</span >

No need for the second argument to have a name; searchItems is redundant with the type Vector&lt;RecentSearch&gt;.

<span class="quote">&gt; Source/WebCore/platform/SearchPopupMenu.h:43
&gt; +    virtual void loadRecentSearches(const AtomicString&amp; name, Vector&lt;RecentSearch&gt;&amp; searchItems) = 0;</span >

No need for the second argument to have a name; searchItems is redundant with the type Vector&lt;RecentSearch&gt;.

We should come back and change this function to use a return value instead of an out argument in a later patch.

<span class="quote">&gt; Source/WebCore/platform/cocoa/SearchPopupMenuCocoa.mm:87
&gt; +        for (auto searchItem : searchItems)</span >

This should be auto&amp; rather than auto, since we have no need to copy each searchItem as we iterate the vector.</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>