Home | History | Annotate | Download | only in aura

Lines Matching refs:TestProperty

1575 class TestProperty {
1577 TestProperty() {}
1578 virtual ~TestProperty() {
1581 static TestProperty* last_deleted() { return last_deleted_; }
1584 static TestProperty* last_deleted_;
1585 DISALLOW_COPY_AND_ASSIGN(TestProperty);
1588 TestProperty* TestProperty::last_deleted_ = NULL;
1590 DEFINE_OWNED_WINDOW_PROPERTY_KEY(TestProperty, kOwnedKey, NULL);
1597 TestProperty* p1 = new TestProperty();
1600 EXPECT_EQ(NULL, TestProperty::last_deleted());
1602 TestProperty* p2 = new TestProperty();
1605 EXPECT_EQ(p1, TestProperty::last_deleted());
1609 EXPECT_EQ(p2, TestProperty::last_deleted());
1611 TestProperty* p3 = new TestProperty();
1614 EXPECT_EQ(p2, TestProperty::last_deleted());
1616 EXPECT_EQ(p3, TestProperty::last_deleted());