diff -r 000000000000 -r 4f2f89ce4247 WebKitTools/MiniBrowser/mac/BrowserStatisticsWindowController.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/WebKitTools/MiniBrowser/mac/BrowserStatisticsWindowController.h Fri Sep 17 09:02:29 2010 +0300 @@ -0,0 +1,20 @@ +// +// BrowserStatisticsWindowController.h +// MiniBrowser +// +// Created by Sam Weinig on 4/21/10. +// Copyright 2010 Apple Inc. All rights reserved. +// + +@interface BrowserStatisticsWindowController : NSWindowController { + IBOutlet NSMatrix *_basicStatsMatrix; + + WKContextRef _threadContext; + WKContextRef _processContext; +} + +- (id)initWithThreadedWKContextRef:(WKContextRef)threadContext processWKContextRef:(WKContextRef)processContext; + +- (IBAction)refreshStatistics:(id)sender; + +@end