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

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

Issue 2279403003: blimp: Hook up the layer holding the tab content into Chrome. (Closed)
Patch Set: add linux 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_impl.h
diff --git a/blimp/client/core/contents/blimp_contents_impl.h b/blimp/client/core/contents/blimp_contents_impl.h
index c08f441a27bc696ffe3064c90ed2cbebbc5a4528..0c6c769fc52ebe31c89b7f8b34945b2e47a2b256 100644
--- a/blimp/client/core/contents/blimp_contents_impl.h
+++ b/blimp/client/core/contents/blimp_contents_impl.h
@@ -25,6 +25,7 @@ class BlimpContentsImplAndroid;
#endif // defined(OS_ANDROID)
class BlimpContentsObserver;
+class BlimpContentsView;
class BlimpNavigationController;
class TabControlFeature;
@@ -43,6 +44,7 @@ class BlimpContentsImpl : public BlimpContents,
BlimpNavigationControllerImpl& GetNavigationController() override;
void AddObserver(BlimpContentsObserver* observer) override;
void RemoveObserver(BlimpContentsObserver* observer) override;
+ gfx::NativeView GetNativeView() override;
// Check if some observer is in the observer list.
bool HasObserver(BlimpContentsObserver* observer);
@@ -73,6 +75,8 @@ class BlimpContentsImpl : public BlimpContents,
// feature instead of tab control feature. crbug.com/639154.
TabControlFeature* tab_control_feature_ = nullptr;
+ std::unique_ptr<BlimpContentsView> blimp_contents_view_;
+
DISALLOW_COPY_AND_ASSIGN(BlimpContentsImpl);
};

Powered by Google App Engine
This is Rietveld 408576698