Expose API for whether an SkPicture contains text

BUG=chromium:399728
R=reed@google.com, nduca@chromium.org

Author: ajuma@chromium.org

Review URL: https://codereview.chromium.org/478673002
diff --git a/include/core/SkPicture.h b/include/core/SkPicture.h
index 2a89277..004f130 100644
--- a/include/core/SkPicture.h
+++ b/include/core/SkPicture.h
@@ -204,6 +204,10 @@
      */
     int approximateOpCount() const;
 
+    /** Return true if this picture contains text.
+     */
+    bool hasText() const;
+
 private:
     // V2 : adds SkPixelRef's generation ID.
     // V3 : PictInfo tag at beginning, and EOF tag at the end
diff --git a/src/core/SkPicture.cpp b/src/core/SkPicture.cpp
index ab00000..7af955a 100644
--- a/src/core/SkPicture.cpp
+++ b/src/core/SkPicture.cpp
@@ -393,6 +393,11 @@
 }
 #endif
 
+// fRecord TODO
+bool SkPicture::hasText() const {
+    return fData.get() && fData->hasText();
+}
+
 // fRecord OK
 bool SkPicture::willPlayBackBitmaps() const {
     if (fRecord.get()) {
diff --git a/src/core/SkPictureData.h b/src/core/SkPictureData.h
index df898cf..a6c840a 100644
--- a/src/core/SkPictureData.h
+++ b/src/core/SkPictureData.h
@@ -89,6 +89,8 @@
 
     bool containsBitmaps() const;
 
+    bool hasText() const { return fContentInfo.hasText(); }
+
     int opCount() const { return fContentInfo.numOperations(); }
 
     const SkData* opData() const { return fOpData; }
diff --git a/tests/PictureTest.cpp b/tests/PictureTest.cpp
index b3f13f0..b7e4bb6 100644
--- a/tests/PictureTest.cpp
+++ b/tests/PictureTest.cpp
@@ -919,6 +919,63 @@
 
 #endif
 
+static void test_has_text(skiatest::Reporter* reporter) {
+    SkPictureRecorder recorder;
+    SkPaint paint;
+    paint.setColor(SK_ColorBLUE);
+    SkPoint point = SkPoint::Make(10, 10);
+
+    SkCanvas* canvas = recorder.beginRecording(100, 100);
+    {
+        canvas->drawRect(SkRect::MakeWH(20, 20), paint);
+    }
+    SkAutoTUnref<SkPicture> picture(recorder.endRecording());
+    REPORTER_ASSERT(reporter, !picture->hasText());
+
+    canvas = recorder.beginRecording(100, 100);
+    {
+        canvas->drawText("Q", 1, point.fX, point.fY, paint);
+    }
+    picture.reset(recorder.endRecording());
+    REPORTER_ASSERT(reporter, picture->hasText());
+
+    canvas = recorder.beginRecording(100, 100);
+    {
+        canvas->drawPosText("Q", 1, &point, paint);
+    }
+    picture.reset(recorder.endRecording());
+    REPORTER_ASSERT(reporter, picture->hasText());
+
+    canvas = recorder.beginRecording(100, 100);
+    {
+        canvas->drawPosTextH("Q", 1, &point.fX, point.fY, paint);
+    }
+    picture.reset(recorder.endRecording());
+    REPORTER_ASSERT(reporter, picture->hasText());
+
+    canvas = recorder.beginRecording(100, 100);
+    {
+        SkPath path;
+        path.moveTo(0, 0);
+        path.lineTo(50, 50);
+
+        canvas->drawTextOnPathHV("Q", 1, path, point.fX, point.fY, paint);
+    }
+    picture.reset(recorder.endRecording());
+    REPORTER_ASSERT(reporter, picture->hasText());
+
+    canvas = recorder.beginRecording(100, 100);
+    {
+        SkPath path;
+        path.moveTo(0, 0);
+        path.lineTo(50, 50);
+
+        canvas->drawTextOnPath("Q", 1, path, NULL, paint);
+    }
+    picture.reset(recorder.endRecording());
+    REPORTER_ASSERT(reporter, picture->hasText());
+}
+
 static void set_canvas_to_save_count_4(SkCanvas* canvas) {
     canvas->restoreToCount(1);
     canvas->save();
@@ -1561,6 +1618,7 @@
 #if SK_SUPPORT_GPU
     test_gpu_veto(reporter);
 #endif
+    test_has_text(reporter);
     test_gatherpixelrefs(reporter);
     test_gatherpixelrefsandrects(reporter);
     test_bitmap_with_encoded_data(reporter);