diff options
Diffstat (limited to 'views/window/window_win.cc')
-rw-r--r-- | views/window/window_win.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/views/window/window_win.cc b/views/window/window_win.cc index 7776bea..48d3aab 100644 --- a/views/window/window_win.cc +++ b/views/window/window_win.cc @@ -237,8 +237,8 @@ gfx::Rect WindowWin::GetNormalBounds() const { return bounds; } -void WindowWin::SetBounds(const gfx::Rect& bounds, - gfx::NativeWindow other_window) { +void WindowWin::SetWindowBounds(const gfx::Rect& bounds, + gfx::NativeWindow other_window) { SetChildBounds(GetNativeView(), GetParent(), other_window, bounds, kMonitorEdgePadding, 0); } @@ -1315,7 +1315,7 @@ void WindowWin::SetInitialBounds(const gfx::Rect& create_bounds) { SizeWindowToDefault(); } else { // Use the supplied initial bounds. - SetBounds(create_bounds, NULL); + SetWindowBounds(create_bounds, NULL); } } } |