| 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 #ifndef COMPONENTS_FONT_SERVICE_FONT_SERVICE_APP_H_ | 5 #ifndef COMPONENTS_FONT_SERVICE_FONT_SERVICE_APP_H_ |
| 6 #define COMPONENTS_FONT_SERVICE_FONT_SERVICE_APP_H_ | 6 #define COMPONENTS_FONT_SERVICE_FONT_SERVICE_APP_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "components/font_service/public/interfaces/font_service.mojom.h" | 12 #include "components/font_service/public/interfaces/font_service.mojom.h" |
| 13 #include "mojo/public/cpp/bindings/binding_set.h" | 13 #include "mojo/public/cpp/bindings/binding_set.h" |
| 14 #include "services/service_manager/public/cpp/binder_registry.h" | 14 #include "services/service_manager/public/cpp/binder_registry.h" |
| 15 #include "services/service_manager/public/cpp/interface_factory.h" | 15 #include "services/service_manager/public/cpp/interface_factory.h" |
| 16 #include "services/service_manager/public/cpp/service.h" | 16 #include "services/service_manager/public/cpp/service.h" |
| 17 #include "services/tracing/public/cpp/provider.h" | |
| 18 #include "skia/ext/skia_utils_base.h" | 17 #include "skia/ext/skia_utils_base.h" |
| 19 | 18 |
| 20 namespace font_service { | 19 namespace font_service { |
| 21 | 20 |
| 22 class FontServiceApp | 21 class FontServiceApp |
| 23 : public service_manager::Service, | 22 : public service_manager::Service, |
| 24 public service_manager::InterfaceFactory<mojom::FontService>, | 23 public service_manager::InterfaceFactory<mojom::FontService>, |
| 25 public mojom::FontService { | 24 public mojom::FontService { |
| 26 public: | 25 public: |
| 27 FontServiceApp(); | 26 FontServiceApp(); |
| (...skipping 15 matching lines...) Expand all Loading... |
| 43 mojom::TypefaceStylePtr requested_style, | 42 mojom::TypefaceStylePtr requested_style, |
| 44 const MatchFamilyNameCallback& callback) override; | 43 const MatchFamilyNameCallback& callback) override; |
| 45 void OpenStream(uint32_t id_number, | 44 void OpenStream(uint32_t id_number, |
| 46 const OpenStreamCallback& callback) override; | 45 const OpenStreamCallback& callback) override; |
| 47 | 46 |
| 48 int FindOrAddPath(const SkString& path); | 47 int FindOrAddPath(const SkString& path); |
| 49 | 48 |
| 50 service_manager::BinderRegistry registry_; | 49 service_manager::BinderRegistry registry_; |
| 51 mojo::BindingSet<mojom::FontService> bindings_; | 50 mojo::BindingSet<mojom::FontService> bindings_; |
| 52 | 51 |
| 53 tracing::Provider tracing_; | |
| 54 | |
| 55 // We don't want to leak paths to our callers; we thus enumerate the paths of | 52 // We don't want to leak paths to our callers; we thus enumerate the paths of |
| 56 // fonts. | 53 // fonts. |
| 57 std::vector<SkString> paths_; | 54 std::vector<SkString> paths_; |
| 58 | 55 |
| 59 DISALLOW_COPY_AND_ASSIGN(FontServiceApp); | 56 DISALLOW_COPY_AND_ASSIGN(FontServiceApp); |
| 60 }; | 57 }; |
| 61 | 58 |
| 62 } // namespace font_service | 59 } // namespace font_service |
| 63 | 60 |
| 64 #endif // COMPONENTS_FONT_SERVICE_FONT_SERVICE_APP_H_ | 61 #endif // COMPONENTS_FONT_SERVICE_FONT_SERVICE_APP_H_ |
| OLD | NEW |