diff options
author | Jean-Baptiste Queru <jbq@google.com> | 2011-05-12 08:05:27 -0700 |
---|---|---|
committer | Android Code Review <code-review@android.com> | 2011-05-12 08:05:27 -0700 |
commit | 555569c59ced09743507966f73d2d500c6deccec (patch) | |
tree | 4bca3a3bcdd565b833c84eb3896f280dd50e9dda /WebKit/android/jni/WebViewCore.cpp | |
parent | 80aad5eedfe9e84cabb8540f818f7d1971ecadc3 (diff) | |
parent | eac91fe693799401095de9338c877d188e8cb8ae (diff) | |
download | external_webkit-555569c59ced09743507966f73d2d500c6deccec.zip external_webkit-555569c59ced09743507966f73d2d500c6deccec.tar.gz external_webkit-555569c59ced09743507966f73d2d500c6deccec.tar.bz2 |
Merge "Switch to SkSafeUnref for better portability"
Diffstat (limited to 'WebKit/android/jni/WebViewCore.cpp')
-rw-r--r-- | WebKit/android/jni/WebViewCore.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/WebKit/android/jni/WebViewCore.cpp b/WebKit/android/jni/WebViewCore.cpp index 3f3eb42..5c252b4 100644 --- a/WebKit/android/jni/WebViewCore.cpp +++ b/WebKit/android/jni/WebViewCore.cpp @@ -621,7 +621,7 @@ void WebViewCore::recordPictureSet(PictureSet* content) DBG_SET_LOGD("{%d,%d,w=%d,h=%d}", inval.fLeft, inval.fTop, inval.width(), inval.height()); content->add(m_addInval, picture, 0, false); - picture->safeUnref(); + SkSafeUnref(picture); } // Remove any pictures already in the set that are obscured by the new one, // and check to see if any already split pieces need to be redrawn. |