WebKitTools/MiniBrowser/mac/BrowserStatisticsWindowController.h
changeset 0 4f2f89ce4247
equal deleted inserted replaced
-1:000000000000 0:4f2f89ce4247
       
     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