Changeset 170095 in webkit
- Timestamp:
- Jun 17, 2014, 11:19:08 PM (11 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r170078 r170095 1 2014-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 1 11 2014-06-17 Carlos Alberto Lopez Perez <clopez@igalia.com> 2 12 -
trunk/Tools/MiniBrowser/mac/WK2BrowserWindowController.m
r169016 r170095 326 326 327 327 if ([keyPath isEqualToString:@"title"]) 328 self.window.title = [_webView.title stringByAppending String:@" [WK2]"];328 self.window.title = [_webView.title stringByAppendingFormat:@" [WK2, %d]", _webView._webProcessIdentifier]; 329 329 else if ([keyPath isEqualToString:@"URL"]) 330 330 [self updateTextFieldFromURL:_webView.URL];
Note:
See TracChangeset
for help on using the changeset viewer.