Chromium Code Reviews

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

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.
Jump to:
View side-by-side diff with in-line comments
Index: chrome/browser/tab_contents/tab_contents.h
diff --git a/chrome/browser/tab_contents/tab_contents.h b/chrome/browser/tab_contents/tab_contents.h
index 9d27d2bda99b03954b270ae9760090ed589f6b4f..7c35a361878f055c1b9ce1fd2c83b4d318f1388a 100644
--- a/chrome/browser/tab_contents/tab_contents.h
+++ b/chrome/browser/tab_contents/tab_contents.h
@@ -58,6 +58,10 @@ namespace webkit_glue {
struct PasswordForm;
}
+namespace views {
+class View;
+}
+
class AutocompleteHistoryManager;
class AutoFillManager;
class BlockedContentContainer;
@@ -445,6 +449,12 @@ class TabContents : public PageNavigator,
// automation in the context of the UI, this is required to be implemented.
gfx::NativeView GetNativeView() const;
+#if defined(TOUCH_UI)
+ // Returns the View associated with this TabContents, for those platforms
+ // that use views instead of native widgets.
+ views::View* GetViewsView();
+#endif
+
// Returns the bounds of this TabContents in the screen coordinate system.
void GetContainerBounds(gfx::Rect *out) const;
« no previous file with comments | « no previous file | chrome/browser/tab_contents/tab_contents.cc » ('j') | chrome/browser/tab_contents/tab_contents.cc » ('J')

Powered by Google App Engine