summaryrefslogtreecommitdiffstats
path: root/WebKitTools/MiniBrowser/mac/BrowserStatisticsWindowController.h
blob: 6b4438f47da21a5866f8ab4f00e52a2ed9ac719e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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