OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/shell/shell_stacking_client_ash.h" | 5 #include "content/shell/shell_stacking_client_ash.h" |
6 | 6 |
7 #include "ui/aura/client/default_capture_client.h" | 7 #include "ui/aura/client/default_capture_client.h" |
8 #include "ui/aura/focus_manager.h" | 8 #include "ui/aura/focus_manager.h" |
9 #include "ui/aura/root_window.h" | 9 #include "ui/aura/root_window.h" |
10 #include "ui/aura/test/test_activation_client.h" | 10 #include "ui/aura/test/test_activation_client.h" |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 test_activation_client_.reset( | 47 test_activation_client_.reset( |
48 new aura::test::TestActivationClient(root_window_.get())); | 48 new aura::test::TestActivationClient(root_window_.get())); |
49 | 49 |
50 capture_client_.reset( | 50 capture_client_.reset( |
51 new aura::client::DefaultCaptureClient(root_window_.get())); | 51 new aura::client::DefaultCaptureClient(root_window_.get())); |
52 } | 52 } |
53 return root_window_.get(); | 53 return root_window_.get(); |
54 } | 54 } |
55 | 55 |
56 } // namespace content | 56 } // namespace content |
OLD | NEW |