blob: 7da0540d427482fe39871aae8f2b31ffb6aec88a (
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
|
// 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_SERVICE_MANAGER_SERVICE_LOADER_H_
#define MOJO_SERVICE_MANAGER_SERVICE_LOADER_H_
#include "mojo/public/shell/shell.mojom.h"
#include "url/gurl.h"
namespace mojo {
class ServiceManager;
// Interface to allowing default loading behavior to be overridden for a
// specific url.
class ServiceLoader {
public:
virtual ~ServiceLoader() {};
virtual void LoadService(ServiceManager* manager,
const GURL& url,
ScopedShellHandle service_handle) = 0;
protected:
ServiceLoader() {}
};
} // namespace mojo
#endif // MOJO_SERVICE_MANAGER_SERVICE_LOADER_H_
|