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

Unified Diff: blimp/client/app/android/blimp_view.h

Issue 2274323002: Expose Blimp dependencies to the embedder (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@khushal_baseline_1
Patch Set: Fix linux build break Created 4 years, 4 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: blimp/client/app/android/blimp_view.h
diff --git a/blimp/client/app/android/blimp_view.h b/blimp/client/app/android/blimp_view.h
index 1c417e20ead295511a95e60472d164cd5442bd16..5ba4875120376e99bc9aa499b7bb943634e53ede 100644
--- a/blimp/client/app/android/blimp_view.h
+++ b/blimp/client/app/android/blimp_view.h
@@ -9,7 +9,7 @@
#include "base/android/jni_android.h"
#include "base/macros.h"
-#include "blimp/client/app/android/blimp_compositor_manager_android.h"
+#include "blimp/client/feature/compositor/blimp_compositor_manager.h"
#include "ui/gfx/native_widget_types.h"
namespace gfx {
@@ -18,6 +18,8 @@ class Size;
namespace blimp {
namespace client {
+class BlimpCompositorDependencies;
+class BlimpCompositorManager;
class BrowserCompositor;
class RenderWidgetFeature;
@@ -100,10 +102,10 @@ class BlimpView {
const float device_scale_factor_;
+ std::unique_ptr<BlimpCompositorDependencies> compositor_dependencies_;
+ std::unique_ptr<BlimpCompositorManager> compositor_manager_;
std::unique_ptr<BrowserCompositor> compositor_;
- std::unique_ptr<BlimpCompositorManagerAndroid> compositor_manager_;
-
// The format of the current surface owned by |compositor_|. See
// android.graphics.PixelFormat.java.
int current_surface_format_;
« no previous file with comments | « blimp/client/app/android/blimp_compositor_manager_android.cc ('k') | blimp/client/app/android/blimp_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698