| Index: content/browser/web_contents/web_contents_impl.cc
|
| diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_contents_impl.cc
|
| index 507ebbe57de5de78422bdf86c398e0b70c9e7e00..aef85f40d921e069e4fbde35f4f06a0c4b599ec8 100644
|
| --- a/content/browser/web_contents/web_contents_impl.cc
|
| +++ b/content/browser/web_contents/web_contents_impl.cc
|
| @@ -2176,7 +2176,7 @@ gfx::NativeView WebContentsImpl::GetContentNativeView() {
|
| return view_->GetContentNativeView();
|
| }
|
|
|
| -gfx::NativeWindow WebContentsImpl::GetTopLevelNativeWindow() {
|
| +gfx::NativeWindow WebContentsImpl::GetTopLevelNativeWindow() const {
|
| return view_->GetTopLevelNativeWindow();
|
| }
|
|
|
| @@ -2184,7 +2184,7 @@ gfx::Rect WebContentsImpl::GetViewBounds() {
|
| return view_->GetViewBounds();
|
| }
|
|
|
| -gfx::Rect WebContentsImpl::GetContainerBounds() {
|
| +gfx::Rect WebContentsImpl::GetContainerBounds() const {
|
| gfx::Rect rv;
|
| view_->GetContainerBounds(&rv);
|
| return rv;
|
|
|