summaryrefslogtreecommitdiffstats
path: root/Source/WebKit/android/jni/WebCoreJniOnLoad.cpp
diff options
context:
space:
mode:
authorJohn Reck <jreck@google.com>2011-11-07 13:53:18 -0800
committerJohn Reck <jreck@google.com>2011-11-07 14:40:06 -0800
commit82ccbd8ce95211b4b5afad6a653462fd3beb771b (patch)
tree8f266070f9f609e033dfe6eb6d34e0968c24da97 /Source/WebKit/android/jni/WebCoreJniOnLoad.cpp
parent54464c408c893079c1486aec03329f1de8ec6a29 (diff)
downloadexternal_webkit-82ccbd8ce95211b4b5afad6a653462fd3beb771b.zip
external_webkit-82ccbd8ce95211b4b5afad6a653462fd3beb771b.tar.gz
external_webkit-82ccbd8ce95211b4b5afad6a653462fd3beb771b.tar.bz2
Remove the global button lock
Bug: 5558699 Bug: 5572238 Change-Id: Ic199ffda5bc4aa09d39ee54221c6fcce6a91ca05
Diffstat (limited to 'Source/WebKit/android/jni/WebCoreJniOnLoad.cpp')
-rw-r--r--Source/WebKit/android/jni/WebCoreJniOnLoad.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/WebKit/android/jni/WebCoreJniOnLoad.cpp b/Source/WebKit/android/jni/WebCoreJniOnLoad.cpp
index e9d7bc3..bb71bf5 100644
--- a/Source/WebKit/android/jni/WebCoreJniOnLoad.cpp
+++ b/Source/WebKit/android/jni/WebCoreJniOnLoad.cpp
@@ -304,7 +304,7 @@ EXPORT void benchmark(const char* url, int reloadCount, int width, int height) {
bmp.setConfig(SkBitmap::kARGB_8888_Config, width, height);
bmp.allocPixels();
SkCanvas canvas(bmp);
- PlatformGraphicsContext ctx(&canvas, NULL);
+ PlatformGraphicsContext ctx(&canvas);
GraphicsContext gc(&ctx);
frame->view()->paintContents(&gc, IntRect(0, 0, width, height));