| Index: ui/views/widget/widget.cc
|
| diff --git a/ui/views/widget/widget.cc b/ui/views/widget/widget.cc
|
| index 8aaa88a4ff59edfb33eb74b87457536e082b20fa..9712cbad05188df20deb38b276f38c217b6816ad 100644
|
| --- a/ui/views/widget/widget.cc
|
| +++ b/ui/views/widget/widget.cc
|
| @@ -230,18 +230,18 @@ Widget* Widget::CreateWindow(WidgetDelegate* delegate) {
|
| }
|
|
|
| // static
|
| -Widget* Widget::CreateWindowWithParent(WidgetDelegate* delegate,
|
| - gfx::NativeWindow parent) {
|
| - return CreateWindowWithParentAndBounds(delegate, parent, gfx::Rect());
|
| -}
|
| -
|
| -// static
|
| Widget* Widget::CreateWindowWithBounds(WidgetDelegate* delegate,
|
| const gfx::Rect& bounds) {
|
| return CreateWindowWithParentAndBounds(delegate, NULL, bounds);
|
| }
|
|
|
| // static
|
| +Widget* Widget::CreateWindowWithParent(WidgetDelegate* delegate,
|
| + gfx::NativeWindow parent) {
|
| + return CreateWindowWithParentAndBounds(delegate, parent, gfx::Rect());
|
| +}
|
| +
|
| +// static
|
| Widget* Widget::CreateWindowWithParentAndBounds(WidgetDelegate* delegate,
|
| gfx::NativeWindow parent,
|
| const gfx::Rect& bounds) {
|
|
|