diff options
author | Cary Clark <cary@android.com> | 2010-08-24 06:46:50 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2010-08-24 06:46:50 -0700 |
commit | e7a0708886b515f34d0a7e034cdea391681bf7f1 (patch) | |
tree | 2ce075914911e37fb0a101eacfb37695b78aa87d | |
parent | f3151d7b79fdd18bb98f61e807bf7b0780645cf7 (diff) | |
parent | 21ed5a4502b3ce76875505aa220f187d165f47b1 (diff) | |
download | external_webkit-e7a0708886b515f34d0a7e034cdea391681bf7f1.zip external_webkit-e7a0708886b515f34d0a7e034cdea391681bf7f1.tar.gz external_webkit-e7a0708886b515f34d0a7e034cdea391681bf7f1.tar.bz2 |
am 21ed5a45: Merge "check for null pictures when selecting text" into gingerbread
Merge commit '21ed5a4502b3ce76875505aa220f187d165f47b1' into gingerbread-plus-aosp
* commit '21ed5a4502b3ce76875505aa220f187d165f47b1':
check for null pictures when selecting text
-rw-r--r-- | WebKit/android/nav/SelectText.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/WebKit/android/nav/SelectText.cpp b/WebKit/android/nav/SelectText.cpp index 7665972..fc93972 100644 --- a/WebKit/android/nav/SelectText.cpp +++ b/WebKit/android/nav/SelectText.cpp @@ -1239,12 +1239,15 @@ SelectText::SelectText() paint.setColor(0xffaaaaaa); canvas->drawPath(endPath, paint); m_endControl.endRecording(); + m_picture = 0; } void SelectText::draw(SkCanvas* canvas, LayerAndroid* layer) { // FIXME: layer may not own the original selected picture m_picture = layer->picture(); + if (!m_picture) + return; DBG_NAV_LOGD("m_extendSelection=%d m_drawPointer=%d", m_extendSelection, m_drawPointer); if (m_extendSelection) drawSelectionRegion(canvas); @@ -1316,6 +1319,8 @@ void SelectText::drawSelectionRegion(SkCanvas* canvas) void SelectText::extendSelection(const SkPicture* picture, int x, int y) { + if (!picture) + return; SkIRect clipRect = m_visibleRect; int base; if (m_startSelection) { @@ -1365,6 +1370,8 @@ void SelectText::extendSelection(const SkPicture* picture, int x, int y) const String SelectText::getSelection() { + if (!m_picture) + return String(); SkIRect clipRect; clipRect.set(0, 0, m_picture->width(), m_picture->height()); String result = text(*m_picture, clipRect, m_selStart, m_startBase, @@ -1424,6 +1431,8 @@ bool SelectText::hitSelection(int x, int y) const void SelectText::moveSelection(const SkPicture* picture, int x, int y) { + if (!picture) + return; SkIRect clipRect = m_visibleRect; clipRect.join(m_selStart); clipRect.join(m_selEnd); |