| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef ASH_MUS_SYSUI_APPLICATION_H_ | |
| 6 #define ASH_MUS_SYSUI_APPLICATION_H_ | |
| 7 | |
| 8 #include "base/macros.h" | |
| 9 #include "base/memory/scoped_ptr.h" | |
| 10 #include "mojo/services/tracing/public/cpp/tracing_impl.h" | |
| 11 #include "mojo/shell/public/cpp/shell_client.h" | |
| 12 | |
| 13 namespace ash { | |
| 14 namespace sysui { | |
| 15 | |
| 16 class AshInit; | |
| 17 | |
| 18 class SysUIApplication : public mojo::ShellClient { | |
| 19 public: | |
| 20 SysUIApplication(); | |
| 21 ~SysUIApplication() override; | |
| 22 | |
| 23 private: | |
| 24 // mojo::ShellClient: | |
| 25 void Initialize(mojo::Shell* shell, | |
| 26 const std::string& url, | |
| 27 uint32_t id) override; | |
| 28 | |
| 29 mojo::TracingImpl tracing_; | |
| 30 scoped_ptr<AshInit> ash_init_; | |
| 31 | |
| 32 DISALLOW_COPY_AND_ASSIGN(SysUIApplication); | |
| 33 }; | |
| 34 | |
| 35 } // namespace sysui | |
| 36 } // namespace ash | |
| 37 | |
| 38 #endif // ASH_MUS_SYSUI_APPLICATION_H_ | |
| OLD | NEW |