diff options
author | Grace Kloba <klobag@google.com> | 2009-08-04 17:50:26 -0700 |
---|---|---|
committer | Grace Kloba <klobag@google.com> | 2009-08-05 10:04:35 -0700 |
commit | 0a2bed53555947aea37912d694f9c7c376490808 (patch) | |
tree | 2158bd03d8a4210f6c31df9a934eda22d3cfee28 /WebCore/plugins/android/PluginClient.h | |
parent | f1c0bbb9bf698154c206e842f94b72d277a96094 (diff) | |
download | external_webkit-0a2bed53555947aea37912d694f9c7c376490808.zip external_webkit-0a2bed53555947aea37912d694f9c7c376490808.tar.gz external_webkit-0a2bed53555947aea37912d694f9c7c376490808.tar.bz2 |
Add SystemInterface to the android_npapi so that we can expose system related
properties. Currently it only has getApplicationDataDirectory.
Diffstat (limited to 'WebCore/plugins/android/PluginClient.h')
-rw-r--r-- | WebCore/plugins/android/PluginClient.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/WebCore/plugins/android/PluginClient.h b/WebCore/plugins/android/PluginClient.h index 5dc300c..f858eb8 100644 --- a/WebCore/plugins/android/PluginClient.h +++ b/WebCore/plugins/android/PluginClient.h @@ -38,6 +38,7 @@ namespace android { public: virtual ~PluginClient() {} virtual Vector<String> getPluginDirectories() = 0; + virtual String getPluginSharedDataDirectory() = 0; }; } |