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

Unified Diff: content/public/browser/android/content_view_core.h

Issue 143803004: android: Migrate old content readback to use async readback (and delegated renderer) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: turn clipping off for readback Created 6 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/browser/android/content_view_core.h
diff --git a/content/public/browser/android/content_view_core.h b/content/public/browser/android/content_view_core.h
index 85766ee504c6ef347320cd6a4e5957b4280f78ea..038d909f6d4f9f72ddefa66ec1472357ed33a0e3 100644
--- a/content/public/browser/android/content_view_core.h
+++ b/content/public/browser/android/content_view_core.h
@@ -11,6 +11,7 @@
#include "base/callback.h"
#include "content/common/content_export.h"
#include "content/public/browser/navigation_controller.h"
+#include "third_party/skia/include/core/SkBitmap.h"
namespace cc {
class Layer;
@@ -48,9 +49,10 @@ class CONTENT_EXPORT ContentViewCore {
virtual void LoadUrl(NavigationController::LoadURLParams& params) = 0;
virtual jint GetCurrentRenderProcessId(JNIEnv* env, jobject obj) = 0;
virtual void ShowPastePopup(int x, int y) = 0;
- virtual unsigned int GetScaledContentTexture(
+ virtual void GetScaledContentBitmap(
float scale,
- gfx::Size* out_size) = 0;
+ gfx::Size* out_size,
+ const base::Callback<void(bool, const SkBitmap&)>& callback) = 0;
virtual float GetDpiScale() const = 0;
virtual void RequestContentClipping(const gfx::Rect& clipping,
const gfx::Size& content_size) = 0;
« content/public/browser/android/compositor.h ('K') | « content/public/browser/android/compositor.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698