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

Unified Diff: chrome/browser/ui/views/dom_view.cc

Issue 5785001: A NativeViewHostViews class for embedding views inside NativeHostView instances. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years 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: chrome/browser/ui/views/dom_view.cc
diff --git a/chrome/browser/ui/views/dom_view.cc b/chrome/browser/ui/views/dom_view.cc
index a4cc19af2b80485a088d903a03d5cf589cc5eb6a..24275fa06bfefcbcd2599806845407e3d29ace34 100644
--- a/chrome/browser/ui/views/dom_view.cc
+++ b/chrome/browser/ui/views/dom_view.cc
@@ -14,7 +14,7 @@ DOMView::DOMView() : tab_contents_(NULL), initialized_(false) {
DOMView::~DOMView() {
if (native_view())
- Detach();
+ DetachTabContents();
}
bool DOMView::Init(Profile* profile, SiteInstance* instance) {
@@ -25,7 +25,7 @@ bool DOMView::Init(Profile* profile, SiteInstance* instance) {
tab_contents_.reset(CreateTabContents(profile, instance));
// Attach the native_view now if the view is already added to Widget.
if (GetWidget())
- Attach(tab_contents_->GetNativeView());
+ AttachTabContents();
return true;
}
@@ -56,7 +56,19 @@ void DOMView::ViewHierarchyChanged(bool is_add, views::View* parent,
// the native view has not been attached yet and tab_contents_ exists.
views::NativeViewHost::ViewHierarchyChanged(is_add, parent, child);
if (is_add && GetWidget() && !native_view() && tab_contents_.get())
- Attach(tab_contents_->GetNativeView());
+ AttachTabContents();
else if (!is_add && child == this && native_view())
- Detach();
+ DetachTabContents();
+}
+
+void DOMView::AttachTabContents() {
+#if defined(TOUCH_UI)
+ AttachToView(tab_contents_->GetViewsView());
+#else
+ Attach(tab_contents_->GetNativeView());
+#endif
+}
+
+void DOMView::DetachTabContents() {
+ Detach();
}

Powered by Google App Engine
This is Rietveld 408576698