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

Unified Diff: chrome/browser/tab_contents/tab_contents.cc

Issue 5785001: A NativeViewHostViews class for embedding views inside NativeHostView instances. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed the location of the cast as per discussion with ben 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/tab_contents/tab_contents.cc
diff --git a/chrome/browser/tab_contents/tab_contents.cc b/chrome/browser/tab_contents/tab_contents.cc
index 7769d34661382507d1813da9d0f4815bd9416f56..97efe987005820f20626a59df4bad396806b4d22 100644
--- a/chrome/browser/tab_contents/tab_contents.cc
+++ b/chrome/browser/tab_contents/tab_contents.cc
@@ -1060,6 +1060,10 @@ gfx::NativeView TabContents::GetNativeView() const {
return view_->GetNativeView();
}
+TabContentsView* TabContents::GetTabContentsView() {
+ return view_.get();
+}
+
void TabContents::GetContainerBounds(gfx::Rect *out) const {
view_->GetContainerBounds(out);
}

Powered by Google App Engine
This is Rietveld 408576698