summaryrefslogtreecommitdiffstats
path: root/WebKitTools/MiniBrowser/mac/BrowserStatisticsWindowController.m
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2010-08-27 11:02:25 +0100
committerSteve Block <steveblock@google.com>2010-09-02 17:17:20 +0100
commite8b154fd68f9b33be40a3590e58347f353835f5c (patch)
tree0733ce26384183245aaa5656af26c653636fe6c1 /WebKitTools/MiniBrowser/mac/BrowserStatisticsWindowController.m
parentda56157816334089526a7a115a85fd85a6e9a1dc (diff)
downloadexternal_webkit-e8b154fd68f9b33be40a3590e58347f353835f5c.zip
external_webkit-e8b154fd68f9b33be40a3590e58347f353835f5c.tar.gz
external_webkit-e8b154fd68f9b33be40a3590e58347f353835f5c.tar.bz2
Merge WebKit at r66079 : Initial merge by git
Change-Id: Ie2e1440fb9d487d24e52c247342c076fecaecac7
Diffstat (limited to 'WebKitTools/MiniBrowser/mac/BrowserStatisticsWindowController.m')
-rw-r--r--WebKitTools/MiniBrowser/mac/BrowserStatisticsWindowController.m8
1 files changed, 4 insertions, 4 deletions
diff --git a/WebKitTools/MiniBrowser/mac/BrowserStatisticsWindowController.m b/WebKitTools/MiniBrowser/mac/BrowserStatisticsWindowController.m
index 872fb55..28ddb7a 100644
--- a/WebKitTools/MiniBrowser/mac/BrowserStatisticsWindowController.m
+++ b/WebKitTools/MiniBrowser/mac/BrowserStatisticsWindowController.m
@@ -15,8 +15,8 @@
- (id)initWithThreadedWKContextRef:(WKContextRef)threadContext processWKContextRef:(WKContextRef)processContext
{
if ((self = [super initWithWindowNibName:@"BrowserStatisticsWindow"])) {
- _threadContext = WKContextRetain(threadContext);
- _processContext = WKContextRetain(processContext);
+ _threadContext = WKRetain(threadContext);
+ _processContext = WKRetain(processContext);
}
return self;
@@ -24,10 +24,10 @@
- (void)dealloc
{
- WKContextRelease(_threadContext);
+ WKRelease(_threadContext);
_threadContext = 0;
- WKContextRelease(_processContext);
+ WKRelease(_processContext);
_processContext = 0;
[super dealloc];