Bug 149475

Summary: URL of page visited in private browsing still appears in Activity Monitor after page is closed
Product: WebKit Reporter: Anders Carlsson <andersca>
Component: New BugsAssignee: Anders Carlsson <andersca>
Status: RESOLVED FIXED    
Severity: Normal    
Priority: P2    
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch
none
Patch mitz: review+

Description Anders Carlsson 2015-09-22 14:53:11 PDT
URL of page visited in private browsing still appears in Activity Monitor after page is closed
Comment 1 Anders Carlsson 2015-09-22 16:18:58 PDT
Created attachment 261773 [details]
Patch
Comment 2 mitz 2015-09-22 16:22:49 PDT
Comment on attachment 261773 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=261773&action=review

> Source/WebKit2/WebProcess/cocoa/WebProcessCocoa.mm:269
> -            CFArrayAppendValue(activePageURLs.get(), userVisibleString(originAsURL));
> +            [activePageURLs addObject:originAsURL];

Why is it OK to change from passing an array of string to passing an array of URLs? Does WKSetApplicationInformationItem support both?
Comment 3 Anders Carlsson 2015-09-22 16:24:06 PDT
Created attachment 261774 [details]
Patch
Comment 4 Anders Carlsson 2015-09-22 16:33:25 PDT
Committed r190141: <http://trac.webkit.org/changeset/190141>