diff options
author | Cary Clark <cary@android.com> | 2010-08-24 06:44:55 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2010-08-24 06:44:55 -0700 |
commit | 21ed5a4502b3ce76875505aa220f187d165f47b1 (patch) | |
tree | 6af929490b73c9e1bf239797221da64e8bbba9f4 | |
parent | 828ef22db863664b8e992adf15ddf92ef570f4f8 (diff) | |
parent | b4239e11f8fe298bc8aa4350fcd91cc4990fc620 (diff) | |
download | external_webkit-21ed5a4502b3ce76875505aa220f187d165f47b1.zip external_webkit-21ed5a4502b3ce76875505aa220f187d165f47b1.tar.gz external_webkit-21ed5a4502b3ce76875505aa220f187d165f47b1.tar.bz2 |
Merge "check for null pictures when selecting text" into gingerbread
-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); |