Home | History | Annotate | Download | only in base

Lines Matching refs:Child

73 class Child : public Parent {
75 ~Child() override = default;
364 Child child;
365 child.value = 0;
366 Closure virtual_set_cb = Bind(&Parent::VirtualSet, &child);
368 EXPECT_EQ(kChildValue, child.value);
370 child.value = 0;
371 Closure non_virtual_set_cb = Bind(&Parent::NonVirtualSet, &child);
373 EXPECT_EQ(kParentValue, child.value);