| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #ifndef SERVICES_UI_DEMO_MUS_DEMO_H_ | 5 #ifndef SERVICES_UI_DEMO_MUS_DEMO_H_ |
| 6 #define SERVICES_UI_DEMO_MUS_DEMO_H_ | 6 #define SERVICES_UI_DEMO_MUS_DEMO_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <set> | 10 #include <set> |
| 11 #include <string> | 11 #include <string> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "base/callback.h" | 14 #include "base/callback.h" |
| 15 #include "base/macros.h" | 15 #include "base/macros.h" |
| 16 #include "base/timer/timer.h" | 16 #include "base/timer/timer.h" |
| 17 #include "services/shell/public/cpp/service.h" | 17 #include "services/service_manager/public/cpp/service.h" |
| 18 #include "services/ui/public/cpp/window_manager_delegate.h" | 18 #include "services/ui/public/cpp/window_manager_delegate.h" |
| 19 #include "services/ui/public/cpp/window_tree_client_delegate.h" | 19 #include "services/ui/public/cpp/window_tree_client_delegate.h" |
| 20 #include "third_party/skia/include/core/SkBitmap.h" | 20 #include "third_party/skia/include/core/SkBitmap.h" |
| 21 | 21 |
| 22 namespace ui { | 22 namespace ui { |
| 23 class BitmapUploader; | 23 class BitmapUploader; |
| 24 class GpuService; | 24 class GpuService; |
| 25 | 25 |
| 26 namespace demo { | 26 namespace demo { |
| 27 | 27 |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 // Current rotation angle for drawing. | 89 // Current rotation angle for drawing. |
| 90 double angle_ = 0.0; | 90 double angle_ = 0.0; |
| 91 | 91 |
| 92 DISALLOW_COPY_AND_ASSIGN(MusDemo); | 92 DISALLOW_COPY_AND_ASSIGN(MusDemo); |
| 93 }; | 93 }; |
| 94 | 94 |
| 95 } // namespace demo | 95 } // namespace demo |
| 96 } // namespace ui | 96 } // namespace ui |
| 97 | 97 |
| 98 #endif // SERVICES_UI_DEMO_MUS_DEMO_H_ | 98 #endif // SERVICES_UI_DEMO_MUS_DEMO_H_ |
| OLD | NEW |