| 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 "ui/views/widget/desktop_aura/desktop_stacking_client.h" | 5 #include "ui/views/widget/desktop_aura/desktop_stacking_client.h" |
| 6 | 6 |
| 7 #include "ui/aura/client/activation_client.h" | 7 #include "ui/aura/client/activation_client.h" |
| 8 #include "ui/aura/client/default_capture_client.h" | 8 #include "ui/aura/client/default_capture_client.h" |
| 9 #include "ui/aura/focus_manager.h" | 9 #include "ui/aura/focus_manager.h" |
| 10 #include "ui/aura/root_window.h" | 10 #include "ui/aura/root_window.h" |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 window_event_filter_->AddHandler(input_method_filter_.get()); | 55 window_event_filter_->AddHandler(input_method_filter_.get()); |
| 56 | 56 |
| 57 capture_client_.reset( | 57 capture_client_.reset( |
| 58 new aura::client::DefaultCaptureClient(null_parent_.get())); | 58 new aura::client::DefaultCaptureClient(null_parent_.get())); |
| 59 | 59 |
| 60 // Hide the window so we don't attempt to draw to it and what not. | 60 // Hide the window so we don't attempt to draw to it and what not. |
| 61 null_parent_->Hide(); | 61 null_parent_->Hide(); |
| 62 } | 62 } |
| 63 | 63 |
| 64 } // namespace views | 64 } // namespace views |
| OLD | NEW |