blob: bdb995c59603f6f92aebc986402a86e3d4fdba7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
// Copyright 2014 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 MOJO_SHELL_DYNAMIC_SERVICE_LOADER_H_
#define MOJO_SHELL_DYNAMIC_SERVICE_LOADER_H_
#include <map>
#include "base/basictypes.h"
#include "mojo/public/shell/shell.mojom.h"
#include "mojo/public/system/core_cpp.h"
#include "mojo/shell/keep_alive.h"
#include "mojo/shell/service_manager.h"
#include "url/gurl.h"
namespace mojo {
namespace shell {
class Context;
// A subclass of ServiceManager::Loader that loads a dynamic library containing
// the implementation of the service.
class DynamicServiceLoader : public ServiceManager::Loader {
public:
explicit DynamicServiceLoader(Context* context);
virtual ~DynamicServiceLoader();
// Initiates the dynamic load. If the url is a mojo: scheme then the name
// specified will be modified to the platform's naming scheme. Also the
// value specified to the --origin command line argument will be used as the
// host / port.
virtual void Load(const GURL& url,
ScopedShellHandle service_handle) MOJO_OVERRIDE;
private:
class LoadContext;
void AppCompleted(const GURL& url);
typedef std::map<GURL, LoadContext*> LoadContextMap;
LoadContextMap url_to_load_context_;
Context* context_;
DISALLOW_COPY_AND_ASSIGN(DynamicServiceLoader);
};
} // namespace shell
} // namespace mojo
#endif // MOJO_SHELL_DYNAMIC_SERVICE_LOADER_H_
|