Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(524)

Unified Diff: ui/aura/event_filter_unittest.cc

Issue 8417008: aura: Add fullscreen/popups to RenderWidgetHostViewAura. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: use aura::WindowType Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/aura/event_filter_unittest.cc
diff --git a/ui/aura/event_filter_unittest.cc b/ui/aura/event_filter_unittest.cc
index c75c0d5019dbd522b77f4bb3ebfd62b040499616..9de88e64e5c2526bc89ab49bee64ebd41acd0f49 100644
--- a/ui/aura/event_filter_unittest.cc
+++ b/ui/aura/event_filter_unittest.cc
@@ -68,7 +68,7 @@ class TestEventFilterWindowDelegate : public TestWindowDelegate {
Window* CreateWindow(int id, Window* parent, WindowDelegate* delegate) {
Window* window = new Window(delegate ? delegate : new TestWindowDelegate);
window->set_id(id);
- window->Init(ui::Layer::LAYER_HAS_TEXTURE);
+ window->Init(ui::Layer::LAYER_HAS_TEXTURE, Window::LAYER_INITIALLY_INVISIBLE);
window->SetParent(parent);
window->SetBounds(gfx::Rect(0, 0, 100, 100));
window->Show();
@@ -209,4 +209,3 @@ TEST_F(EventFilterTest, Basic) {
} // namespace test
} // namespace aura
-

Powered by Google App Engine
This is Rietveld 408576698