OSDN Git Service

am 7fc27f09: (-s ours) am 3d57c253: Implement the audio tag in webkit -- the correspo...
[android-x86/external-webkit.git] / WebKitTools / MiniBrowser / mac / BrowserStatisticsWindowController.h
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