summaryrefslogtreecommitdiffstats
path: root/Source/WebKit/android/jni/WebCoreJniOnLoad.cpp
diff options
context:
space:
mode:
authorJohn Reck <jreck@google.com>2011-06-02 16:04:42 -0700
committerJohn Reck <jreck@google.com>2011-06-03 13:09:55 -0700
commit4212fae38ffee2bbb657dd19e4ae8b7c735f4953 (patch)
tree0ca18e2fb4fcdb0a84e858994d3c816db42ea531 /Source/WebKit/android/jni/WebCoreJniOnLoad.cpp
parentd615dff3cad080859e4d5d6075c9e98178ae8bd9 (diff)
downloadexternal_webkit-4212fae38ffee2bbb657dd19e4ae8b7c735f4953.zip
external_webkit-4212fae38ffee2bbb657dd19e4ae8b7c735f4953.tar.gz
external_webkit-4212fae38ffee2bbb657dd19e4ae8b7c735f4953.tar.bz2
Initial support for serializing the view state
Serializes only the base layer currently Change-Id: I5cff216a4fc1b08efe3a7955c616b91114f6bf0b
Diffstat (limited to 'Source/WebKit/android/jni/WebCoreJniOnLoad.cpp')
-rw-r--r--Source/WebKit/android/jni/WebCoreJniOnLoad.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/WebKit/android/jni/WebCoreJniOnLoad.cpp b/Source/WebKit/android/jni/WebCoreJniOnLoad.cpp
index 1f264a2..e9d7bc3 100644
--- a/Source/WebKit/android/jni/WebCoreJniOnLoad.cpp
+++ b/Source/WebKit/android/jni/WebCoreJniOnLoad.cpp
@@ -82,6 +82,7 @@ extern int registerWebHistory(JNIEnv*);
extern int registerWebIconDatabase(JNIEnv*);
extern int registerWebSettings(JNIEnv*);
extern int registerWebView(JNIEnv*);
+extern int registerViewStateSerializer(JNIEnv*);
#if ENABLE(DATABASE)
extern int registerWebStorage(JNIEnv*);
#endif
@@ -117,6 +118,7 @@ static RegistrationMethod gWebCoreRegMethods[] = {
{ "WebStorage", android::registerWebStorage },
#endif
{ "WebView", android::registerWebView },
+ { "ViewStateSerializer", android::registerViewStateSerializer },
{ "GeolocationPermissions", android::registerGeolocationPermissions },
{ "MockGeolocation", android::registerMockGeolocation },
#if ENABLE(VIDEO)