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

Unified Diff: blimp/client/compositor/blimp_compositor_android.h

Issue 1450423002: Add glue between the client and engine for Blimp (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blimp_ipc2
Patch Set: Fixed net callback, fixed output surface creation assumption Created 5 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: blimp/client/compositor/blimp_compositor_android.h
diff --git a/blimp/client/compositor/blimp_compositor_android.h b/blimp/client/compositor/blimp_compositor_android.h
index 12e47b22085be35ef8be7215b48899e3b43f5b30..f3255d9e18d8452f7d2a5142ae6184da7fd273be 100644
--- a/blimp/client/compositor/blimp_compositor_android.h
+++ b/blimp/client/compositor/blimp_compositor_android.h
@@ -37,10 +37,6 @@ class BlimpCompositorAndroid : public BlimpCompositor {
~BlimpCompositorAndroid() override;
- // Takes a reference to the ANativeWindow backing |jsurface|, to use to render
- // to, and releases any previously-held reference.
- void SetSurface(JNIEnv* env, jobject jsurface);
-
protected:
// |size| is the size of the display. |real_size_supported| determines
// whether or not this size is the real display size or the display size
@@ -51,7 +47,6 @@ class BlimpCompositorAndroid : public BlimpCompositor {
float dp_to_px);
// BlimpCompositor implementation.
- gfx::AcceleratedWidget GetWindow() override;
void GenerateLayerTreeSettings(cc::LayerTreeSettings* settings);
private:
@@ -65,8 +60,6 @@ class BlimpCompositorAndroid : public BlimpCompositor {
// physical dimensions, including any area occupied by system decorations.
bool real_size_supported_;
- gfx::AcceleratedWidget window_;
-
DISALLOW_COPY_AND_ASSIGN(BlimpCompositorAndroid);
};

Powered by Google App Engine
This is Rietveld 408576698