// Copyright 2015 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_RESOURCE_PROVIDER_RESOURCE_PROVIDER_APP_H_ #define COMPONENTS_RESOURCE_PROVIDER_RESOURCE_PROVIDER_APP_H_ #include #include "base/macros.h" #include "components/resource_provider/public/interfaces/resource_provider.mojom.h" #include "mojo/public/cpp/bindings/binding.h" #include "mojo/public/cpp/bindings/binding_set.h" #include "mojo/services/tracing/public/cpp/tracing_impl.h" #include "mojo/shell/public/cpp/interface_factory.h" #include "mojo/shell/public/cpp/shell_client.h" namespace resource_provider { class ResourceProviderApp : public mojo::ShellClient, public mojo::InterfaceFactory { public: explicit ResourceProviderApp(const std::string& resource_provider_app_url); ~ResourceProviderApp() override; private: // mojo::ShellClient: void Initialize(mojo::Connector* connector, const std::string& url, uint32_t id, uint32_t user_id) override; bool AcceptConnection(mojo::Connection* connection) override; // mojo::InterfaceFactory: void Create(mojo::Connection* connection, mojo::InterfaceRequest request) override; mojo::TracingImpl tracing_; mojo::BindingSet bindings_; // The name of the app that the resource provider code lives in. When using // core services, it'll be the url of that. Otherwise it'll just be // mojo:resource_provider. std::string resource_provider_app_url_; DISALLOW_COPY_AND_ASSIGN(ResourceProviderApp); }; } // namespace resource_provider #endif // COMPONENTS_RESOURCE_PROVIDER_RESOURCE_PROVIDER_APP_H_