summaryrefslogtreecommitdiffstats
path: root/Source/WebKit/android/jni/PicturePile.h
diff options
context:
space:
mode:
authorJohn Reck <jreck@google.com>2012-07-12 09:45:46 -0700
committerJohn Reck <jreck@google.com>2012-07-12 13:21:41 -0700
commit675402ef4358583f64a2476927a548db4841c856 (patch)
treea8466827447f0fc86978af7a1fb3eacc9b554dfe /Source/WebKit/android/jni/PicturePile.h
parent7bf7317fada1c84c2603a639631b7db89e73b556 (diff)
downloadexternal_webkit-675402ef4358583f64a2476927a548db4841c856.zip
external_webkit-675402ef4358583f64a2476927a548db4841c856.tar.gz
external_webkit-675402ef4358583f64a2476927a548db4841c856.tar.bz2
Use an R-Tree for operation recording
Change-Id: I1380ae53139d5f50a25ea5edb61ec8b6818112ca
Diffstat (limited to 'Source/WebKit/android/jni/PicturePile.h')
-rw-r--r--Source/WebKit/android/jni/PicturePile.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/WebKit/android/jni/PicturePile.h b/Source/WebKit/android/jni/PicturePile.h
index 64caa95..a8175d9 100644
--- a/Source/WebKit/android/jni/PicturePile.h
+++ b/Source/WebKit/android/jni/PicturePile.h
@@ -38,12 +38,12 @@
#include <wtf/ThreadSafeRefCounted.h>
#include <wtf/Vector.h>
-#define USE_RECORDING_CONTEXT true
+#define USE_RECORDING_CONTEXT false
#if USE_RECORDING_CONTEXT
namespace WebCore {
-class GraphicsOperationCollection;
+class Recording;
}
-typedef WebCore::GraphicsOperationCollection Picture;
+typedef WebCore::Recording Picture;
#else
class SkPicture;
typedef SkPicture Picture;