Changeset 170095 in webkit


Ignore:
Timestamp:
Jun 17, 2014, 11:19:08 PM (11 years ago)
Author:
timothy_horton@apple.com
Message:

MiniBrowser should show Web Content process pids in the window title
https://bugs.webkit.org/show_bug.cgi?id=134016

Reviewed by Sam Weinig.

  • MiniBrowser/mac/WK2BrowserWindowController.m:

(-[WK2BrowserWindowController observeValueForKeyPath:ofObject:change:context:]):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r170078 r170095  
     12014-06-17  Tim Horton  <timothy_horton@apple.com>
     2
     3        MiniBrowser should show Web Content process pids in the window title
     4        https://bugs.webkit.org/show_bug.cgi?id=134016
     5
     6        Reviewed by Sam Weinig.
     7
     8        * MiniBrowser/mac/WK2BrowserWindowController.m:
     9        (-[WK2BrowserWindowController observeValueForKeyPath:ofObject:change:context:]):
     10
    1112014-06-17  Carlos Alberto Lopez Perez  <clopez@igalia.com>
    212
  • trunk/Tools/MiniBrowser/mac/WK2BrowserWindowController.m

    r169016 r170095  
    326326
    327327    if ([keyPath isEqualToString:@"title"])
    328         self.window.title = [_webView.title stringByAppendingString:@" [WK2]"];
     328        self.window.title = [_webView.title stringByAppendingFormat:@" [WK2, %d]", _webView._webProcessIdentifier];
    329329    else if ([keyPath isEqualToString:@"URL"])
    330330        [self updateTextFieldFromURL:_webView.URL];
Note: See TracChangeset for help on using the changeset viewer.