TestProperty     1583 ui/aura/window_unittest.cc   static TestProperty* last_deleted() { return last_deleted_; }
TestProperty     1586 ui/aura/window_unittest.cc   static TestProperty* last_deleted_;
TestProperty     1587 ui/aura/window_unittest.cc   DISALLOW_COPY_AND_ASSIGN(TestProperty);
TestProperty     1590 ui/aura/window_unittest.cc TestProperty* TestProperty::last_deleted_ = NULL;
TestProperty     1592 ui/aura/window_unittest.cc DEFINE_OWNED_WINDOW_PROPERTY_KEY(TestProperty, kOwnedKey, NULL);
TestProperty     1599 ui/aura/window_unittest.cc   TestProperty* p1 = new TestProperty();
TestProperty     1602 ui/aura/window_unittest.cc   EXPECT_EQ(NULL, TestProperty::last_deleted());
TestProperty     1604 ui/aura/window_unittest.cc   TestProperty* p2 = new TestProperty();
TestProperty     1607 ui/aura/window_unittest.cc   EXPECT_EQ(p1, TestProperty::last_deleted());
TestProperty     1611 ui/aura/window_unittest.cc   EXPECT_EQ(p2, TestProperty::last_deleted());
TestProperty     1613 ui/aura/window_unittest.cc   TestProperty* p3 = new TestProperty();
TestProperty     1616 ui/aura/window_unittest.cc   EXPECT_EQ(p2, TestProperty::last_deleted());
TestProperty     1618 ui/aura/window_unittest.cc   EXPECT_EQ(p3, TestProperty::last_deleted());