| Index: views/controls/native/native_view_host.cc
|
| diff --git a/views/controls/native/native_view_host.cc b/views/controls/native/native_view_host.cc
|
| index f507f7c8be101b2f136479afeeec76a6762a6821..0981b9d1a38a44ccd2c12d7162fb59d5410a0ecc 100644
|
| --- a/views/controls/native/native_view_host.cc
|
| +++ b/views/controls/native/native_view_host.cc
|
| @@ -31,6 +31,7 @@ NativeViewHost::NativeViewHost()
|
| : native_view_(NULL),
|
| views_view_(NULL),
|
| fast_resize_(false),
|
| + fast_resize_at_last_layout_(false),
|
| focus_view_(NULL) {
|
| }
|
|
|
| @@ -120,6 +121,7 @@ void NativeViewHost::Layout() {
|
| } else {
|
| native_wrapper_->HideWidget();
|
| }
|
| + fast_resize_at_last_layout_ = visible && fast_resize_;
|
| }
|
|
|
| void NativeViewHost::OnPaint(gfx::Canvas* canvas) {
|
|
|