Home | History | Annotate | Download | only in core

Lines Matching refs:window1

179   scoped_ptr<Window> window1(CreateTestWindowWithId(1, root_window()));
180 window1->layer()->set_name("1");
186 // This brings |window1| (and its layer) to the front.
187 root_window()->StackChildAbove(window1.get(), window3.get());
192 // Since |window1| does not have a delegate, |window2| should not move in
194 window1->layer()->set_delegate(NULL);
195 root_window()->StackChildAbove(window2.get(), window1.get());
200 // It should still be possible to stack |window3| immediately below |window1|.
201 root_window()->StackChildBelow(window3.get(), window1.get());
206 // Since neither |window3| nor |window1| have a delegate, |window2| should
209 root_window()->StackChildBelow(window2.get(), window1.get());