• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //
2 //  BrowserStatisticsWindowController.h
3 //  MiniBrowser
4 //
5 //  Created by Sam Weinig on 4/21/10.
6 //  Copyright 2010 Apple Inc. All rights reserved.
7 //
8 
9 @interface BrowserStatisticsWindowController : NSWindowController {
10     IBOutlet NSMatrix *_basicStatsMatrix;
11 
12     WKContextRef _threadContext;
13     WKContextRef _processContext;
14 }
15 
16 - (id)initWithThreadedWKContextRef:(WKContextRef)threadContext processWKContextRef:(WKContextRef)processContext;
17 
18 - (IBAction)refreshStatistics:(id)sender;
19 
20 @end
21