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

Unified Diff: blimp/client/core/contents/blimp_contents_view.h

Issue 2292723003: Move remaining Blimp feature code to core. (Closed)
Patch Set: Fix 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/core/contents/blimp_contents_view.h
diff --git a/blimp/client/core/contents/blimp_contents_view.h b/blimp/client/core/contents/blimp_contents_view.h
index b94359f40e1c5011beabf298a68c27d69aa26aff..a9017a431e71d5e18519a9555772674941bf3a3e 100644
--- a/blimp/client/core/contents/blimp_contents_view.h
+++ b/blimp/client/core/contents/blimp_contents_view.h
@@ -8,8 +8,13 @@
#include <memory>
#include "base/macros.h"
+#include "base/memory/ref_counted.h"
#include "ui/gfx/native_widget_types.h"
+namespace cc {
+class Layer;
+} // namespace cc
+
namespace blimp {
namespace client {
class BlimpContentsImpl;
@@ -17,7 +22,8 @@ class BlimpContentsImpl;
class BlimpContentsView {
public:
static std::unique_ptr<BlimpContentsView> Create(
- BlimpContentsImpl* blimp_contents);
+ BlimpContentsImpl* blimp_contents,
+ scoped_refptr<cc::Layer> contents_layer);
virtual ~BlimpContentsView() {}

Powered by Google App Engine
This is Rietveld 408576698