OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "components/mus/example/mock_sysui/mock_sysui.h" | 5 #include "mash/example/mock_sysui/mock_sysui.h" |
6 | 6 |
7 #include "components/mus/public/cpp/property_type_converters.h" | 7 #include "components/mus/public/cpp/property_type_converters.h" |
8 #include "mash/wm/public/interfaces/container.mojom.h" | 8 #include "mash/wm/public/interfaces/container.mojom.h" |
9 #include "mojo/application/public/cpp/application_connection.h" | 9 #include "mojo/application/public/cpp/application_connection.h" |
10 #include "mojo/application/public/cpp/application_impl.h" | 10 #include "mojo/application/public/cpp/application_impl.h" |
11 #include "ui/gfx/canvas.h" | 11 #include "ui/gfx/canvas.h" |
12 #include "ui/views/mus/aura_init.h" | 12 #include "ui/views/mus/aura_init.h" |
13 #include "ui/views/mus/native_widget_mus.h" | 13 #include "ui/views/mus/native_widget_mus.h" |
14 #include "ui/views/mus/window_manager_connection.h" | 14 #include "ui/views/mus/window_manager_connection.h" |
15 #include "ui/views/widget/widget_delegate.h" | 15 #include "ui/views/widget/widget_delegate.h" |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 views::WindowManagerConnection::Create(app); | 101 views::WindowManagerConnection::Create(app); |
102 | 102 |
103 DesktopBackground::Create(app->shell()); | 103 DesktopBackground::Create(app->shell()); |
104 Shelf::Create(app->shell()); | 104 Shelf::Create(app->shell()); |
105 } | 105 } |
106 | 106 |
107 bool MockSysUI::ConfigureIncomingConnection( | 107 bool MockSysUI::ConfigureIncomingConnection( |
108 mojo::ApplicationConnection* connection) { | 108 mojo::ApplicationConnection* connection) { |
109 return false; | 109 return false; |
110 } | 110 } |
OLD | NEW |