Chromium Code Reviews| Index: android_webview/native/aw_contents.h |
| diff --git a/android_webview/native/aw_contents.h b/android_webview/native/aw_contents.h |
| index c1b4751f17d59f76e4a98481a6560a273882c05e..7a0ba74896953f2af2625dc9b15129fa36e075af 100644 |
| --- a/android_webview/native/aw_contents.h |
| +++ b/android_webview/native/aw_contents.h |
| @@ -30,6 +30,7 @@ namespace android_webview { |
| class AwContentsContainer; |
| class AwContentsClientBridge; |
| +class AwPdfExporter; |
| class AwWebContentsDelegate; |
| // Native side of java-class of same name. |
| @@ -84,6 +85,8 @@ class AwContents : public FindHelper::Listener, |
| void Destroy(JNIEnv* env, jobject obj); |
| void DocumentHasImages(JNIEnv* env, jobject obj, jobject message); |
| void GenerateMHTML(JNIEnv* env, jobject obj, jstring jpath, jobject callback); |
| + void CreatePdfExporter(JNIEnv* env, jobject obj, jobject pdfExporter); |
| + public: |
|
joth
2013/11/21 19:38:03
remove me
sgurun-gerrit only
2013/11/23 01:49:11
Done.
|
| void AddVisitedLinks(JNIEnv* env, jobject obj, jobjectArray jvisited_links); |
| base::android::ScopedJavaLocalRef<jbyteArray> GetCertificate( |
| JNIEnv* env, jobject obj); |
| @@ -196,6 +199,7 @@ class AwContents : public FindHelper::Listener, |
| scoped_ptr<IconHelper> icon_helper_; |
| scoped_ptr<AwContents> pending_contents_; |
| scoped_ptr<BrowserViewRenderer> browser_view_renderer_; |
| + scoped_ptr<AwPdfExporter> pdf_exporter_; |
| // GURL is supplied by the content layer as requesting frame. |
| // Callback is supplied by the content layer, and is invoked with the result |