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

Unified Diff: content/public/renderer/render_view.h

Issue 11861008: Expose the capturePicture feature in RenderView for Android WebView legacy API support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 months 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: content/public/renderer/render_view.h
diff --git a/content/public/renderer/render_view.h b/content/public/renderer/render_view.h
index 5cf2af9083b7b5e8a8000cd2e5b9dd228b89585f..24931e6ccde2c17acff05bdba55cd30b5420bde1 100644
--- a/content/public/renderer/render_view.h
+++ b/content/public/renderer/render_view.h
@@ -9,8 +9,10 @@
#include "base/string16.h"
#include "content/common/content_export.h"
#include "ipc/ipc_sender.h"
+#include "skia/ext/refptr.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebNavigationPolicy.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebPageVisibilityState.h"
+#include "third_party/skia/include/core/SkPicture.h"
jamesr 2013/01/11 21:53:26 please don't include this header just to have refe
Leandro Graciá Gil 2013/01/15 20:46:11 Done.
#include "ui/gfx/native_widget_types.h"
namespace webkit_glue {
@@ -163,6 +165,23 @@ class CONTENT_EXPORT RenderView : public IPC::Sender {
// Returns a collection of security info about |frame|.
virtual SSLStatus GetSSLStatusOfFrame(WebKit::WebFrame* frame) const = 0;
+#if defined(OS_ANDROID)
+ typedef base::Callback<void(skia::RefPtr<SkPicture>)> CapturePictureCallback;
+
+ // Sets a callback to receive a new SkPicture with the contents of every new
Jói 2013/01/11 18:40:08 Can there be exactly 0 or 1 callback, or can there
Leandro Graciá Gil 2013/01/15 20:46:11 Removing and implementing via RenderViewObserver.
+ // frame as part of the legacy Android WebView capture picture API.
+ // Should not be used for any other purposes for performance reasons.
+ // Requires the kEnableWebViewCapturePictureAPI command line switch to be set.
+ virtual void SetCapturePictureCallback(
Leandro Graciá Gil 2013/01/11 13:11:33 Some extra context here. We need to support both t
+ const CapturePictureCallback& callback) = 0;
+
+ // Returns a SkPicture with the full contents of the current frame as part of
+ // the legacy Android WebView capture picture API.
+ // Should not be used for any other purposes for performance reasons.
+ // Requires the kEnableWebViewCapturePictureAPI command line switch to be set.
+ virtual skia::RefPtr<SkPicture> CapturePicture() = 0;
+#endif
+
protected:
virtual ~RenderView() {}
};

Powered by Google App Engine
This is Rietveld 408576698