diff options
Diffstat (limited to 'chrome/browser/tab_contents/web_contents.cc')
-rw-r--r-- | chrome/browser/tab_contents/web_contents.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/tab_contents/web_contents.cc b/chrome/browser/tab_contents/web_contents.cc index 44ab59b..6df85ac 100644 --- a/chrome/browser/tab_contents/web_contents.cc +++ b/chrome/browser/tab_contents/web_contents.cc @@ -499,17 +499,17 @@ void WebContents::CreateView() { view_->CreateView(); } -#if defined(OS_WIN) -HWND WebContents::GetContainerHWND() const { +gfx::NativeView WebContents::GetNativeView() const { return view_->GetNativeView(); } -HWND WebContents::GetContentHWND() { + +gfx::NativeView WebContents::GetContentNativeView() { return view_->GetContentNativeView(); } + void WebContents::GetContainerBounds(gfx::Rect *out) const { view_->GetContainerBounds(out); } -#endif void WebContents::CreateShortcut() { NavigationEntry* entry = controller()->GetLastCommittedEntry(); |