Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2115)

Unified Diff: android_webview/native/aw_contents.h

Issue 54963005: Upstream printing changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address code review Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698