Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(228)

Side by Side Diff: ui/views/controls/native/native_view_host_aura_unittest.cc

Issue 1543173002: Switch to standard integer types in ui/views/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ui/views/controls/native/native_view_host_aura.h" 5 #include "ui/views/controls/native/native_view_host_aura.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/macros.h"
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "ui/aura/client/aura_constants.h" 9 #include "ui/aura/client/aura_constants.h"
10 #include "ui/aura/window.h" 10 #include "ui/aura/window.h"
11 #include "ui/base/cursor/cursor.h" 11 #include "ui/base/cursor/cursor.h"
12 #include "ui/events/event_utils.h" 12 #include "ui/events/event_utils.h"
13 #include "ui/views/controls/native/native_view_host.h" 13 #include "ui/views/controls/native/native_view_host.h"
14 #include "ui/views/controls/native/native_view_host_test_base.h" 14 #include "ui/views/controls/native/native_view_host_test_base.h"
15 #include "ui/views/view.h" 15 #include "ui/views/view.h"
16 #include "ui/views/view_constants_aura.h" 16 #include "ui/views/view_constants_aura.h"
17 #include "ui/views/widget/widget.h" 17 #include "ui/views/widget/widget.h"
(...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 362
363 host()->SetVisible(false); 363 host()->SetVisible(false);
364 EXPECT_FALSE(clipping_window()->IsVisible()); 364 EXPECT_FALSE(clipping_window()->IsVisible());
365 EXPECT_FALSE(child()->IsVisible()); 365 EXPECT_FALSE(child()->IsVisible());
366 366
367 DestroyHost(); 367 DestroyHost();
368 DestroyTopLevel(); 368 DestroyTopLevel();
369 } 369 }
370 370
371 } // namespace views 371 } // namespace views
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698