[Eraser strings] Remove unused Supervised User infobar and corresponding strings
[chromium-blink-merge.git] / components / resource_provider / resource_provider_app.h
blob752c7fe569fce36f0e25170fe75574dddc3168c0
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
3 // found in the LICENSE file.
5 #ifndef COMPONENTS_RESOURCE_PROVIDER_RESOURCE_PROVIDER_APP_H_
6 #define COMPONENTS_RESOURCE_PROVIDER_RESOURCE_PROVIDER_APP_H_
8 #include <map>
10 #include "components/resource_provider/public/interfaces/resource_provider.mojom.h"
11 #include "mojo/application/public/cpp/application_delegate.h"
12 #include "mojo/application/public/cpp/interface_factory.h"
13 #include "mojo/common/weak_binding_set.h"
14 #include "third_party/mojo/src/mojo/public/cpp/bindings/binding.h"
16 namespace mojo {
17 class ApplicationImpl;
20 namespace resource_provider {
22 class ResourceProviderApp : public mojo::ApplicationDelegate,
23 public mojo::InterfaceFactory<ResourceProvider> {
24 public:
25 explicit ResourceProviderApp(const std::string& resource_provider_app_url);
26 ~ResourceProviderApp() override;
28 private:
29 // ApplicationDelegate:
30 void Initialize(mojo::ApplicationImpl* app) override;
31 bool ConfigureIncomingConnection(
32 mojo::ApplicationConnection* connection) override;
34 // mojo::InterfaceFactory<ResourceProvider>:
35 void Create(mojo::ApplicationConnection* connection,
36 mojo::InterfaceRequest<ResourceProvider> request) override;
38 mojo::WeakBindingSet<ResourceProvider> bindings_;
40 // The name of the app that the resource provider code lives in. When using
41 // core services, it'll be the url of that. Otherwise it'll just be
42 // mojo:resource_provider.
43 std::string resource_provider_app_url_;
45 DISALLOW_COPY_AND_ASSIGN(ResourceProviderApp);
48 } // namespace resource_provider
50 #endif // COMPONENTS_RESOURCE_PROVIDER_RESOURCE_PROVIDER_APP_H_