<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - We should be able to clear search field recent searches based on time given"
   href="https://bugs.webkit.org/show_bug.cgi?id=150019#c8">Comment # 8</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - We should be able to clear search field recent searches based on time given"
   href="https://bugs.webkit.org/show_bug.cgi?id=150019">bug 150019</a>
              from <span class="vcard"><a class="email" href="mailto:andersca&#64;apple.com" title="Anders Carlsson &lt;andersca&#64;apple.com&gt;"> <span class="fn">Anders Carlsson</span></a>
</span></b>
        <pre>Comment on <span class=""><a href="attachment.cgi?id=263184&amp;action=diff" name="attach_263184" title="Patch v2">attachment 263184</a> <a href="attachment.cgi?id=263184&amp;action=edit" title="Patch v2">[details]</a></span>
Patch v2

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

<span class="quote">&gt; Source/WebCore/platform/SearchPopupMenu.h:45
&gt; +WEBCORE_EXPORT static void removeRecentSearches(std::chrono::system_clock::time_point modifiedSince);</span >

Indentation.

<span class="quote">&gt; Source/WebCore/platform/cocoa/SearchPopupMenuCocoa.mm:135
&gt; +    RetainPtr&lt;NSDictionary&gt; emptyItemsDictionary = adoptNS([[NSDictionary alloc] init]);
&gt; +    RetainPtr&lt;NSDictionary&gt; emptyRecentSearchesDictionary = adoptNS([[NSDictionary alloc] initWithObjectsAndKeys:emptyItemsDictionary.get(), itemsKey, nil]);</span >

Can use auto here.

<span class="quote">&gt; Source/WebCore/platform/cocoa/SearchPopupMenuCocoa.mm:203
&gt; +    RetainPtr&lt;NSDictionary&gt; recentSearchesPlist = returnUncorruptedRecentSearchesPlist(dateModified);</span >

Can use auto here.

<span class="quote">&gt; Source/WebCore/platform/cocoa/SearchPopupMenuCocoa.mm:205
&gt; +        [recentSearchesPlist writeToFile:searchFieldRecentSearchesPlistPath() atomically:NO];</span >

Should be atomically:YES here.

<span class="quote">&gt; Source/WebKit2/UIProcess/WebsiteData/WebsiteDataStore.cpp:1085
&gt; +    WebCore::SearchPopupMenu::removeRecentSearches(modifiedSince);</span >

I don't think you should call into WebCore here. Why can't you just put the contents of removeRecentSearches here?</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>