Index: ui/views/controls/native/native_view_host_unittest.cc |
diff --git a/ui/views/controls/native/native_view_host_unittest.cc b/ui/views/controls/native/native_view_host_unittest.cc |
index f30980bca8bad31eb9c4e2b9a46d89f7ae317892..84d6036e6df6b81279705b9e14e6f96417a8953c 100644 |
--- a/ui/views/controls/native/native_view_host_unittest.cc |
+++ b/ui/views/controls/native/native_view_host_unittest.cc |
@@ -148,7 +148,13 @@ TEST_F(NativeViewHostTest, NativeViewHierarchyChanged) { |
test_view, |
host)); |
+#if defined(USE_AURA) |
+ // One notification is generated from inserting the clipping window into the |
+ // hierarchy. |
+ EXPECT_EQ(1, test_view->notification_count()); |
+#else |
EXPECT_EQ(0, test_view->notification_count()); |
+#endif |
test_view->ResetCount(); |
// Detaching should send a NativeViewHierarchyChanged() notification and |
@@ -163,8 +169,15 @@ TEST_F(NativeViewHostTest, NativeViewHierarchyChanged) { |
// reset the parent. |
host->Attach(child->GetNativeView()); |
EXPECT_EQ(1, test_view->notification_count()); |
+#if defined(USE_AURA) |
+ // There is a clipping window inserted above the native view that needs to be |
+ // accounted for when looking at the relationship between the native views.. |
+ EXPECT_EQ(toplevel()->GetNativeView(), |
+ GetNativeParent(GetNativeParent(child->GetNativeView()))); |
+#else |
EXPECT_EQ(toplevel()->GetNativeView(), |
GetNativeParent(child->GetNativeView())); |
+#endif |
} |
// Verifies ViewHierarchyChanged handles NativeViewHost remove, add and move |