| 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;
|
|
|
|
|