blob: 2f94bc51ca148ebfe35f8b25ea10deeec2e3fc22 (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
// 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 CHROMECAST_SERVICE_CAST_SERVICE_H_
#define CHROMECAST_SERVICE_CAST_SERVICE_H_
#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
namespace base {
class ThreadChecker;
}
namespace content {
class BrowserContext;
}
namespace net {
class URLRequestContextGetter;
}
namespace chromecast {
namespace shell {
class CastNetworkDelegate;
}
class CastService {
public:
// Create() takes a separate url request context getter because the request
// context getter obtained through the browser context might not be
// appropriate for the url requests made by the cast service/reciever.
// For example, on Chromecast, it is needed to pass in a system url request
// context getter that would set the request context for NSS, which the main
// getter doesn't do.
static CastService* Create(
content::BrowserContext* browser_context,
net::URLRequestContextGetter* request_context_getter,
shell::CastNetworkDelegate* network_delegate);
virtual ~CastService();
// Start/stop the cast service.
void Start();
void Stop();
protected:
explicit CastService(content::BrowserContext* browser_context);
virtual void Initialize() = 0;
// Implementation-specific start/stop behavior.
virtual void StartInternal() = 0;
virtual void StopInternal() = 0;
content::BrowserContext* browser_context() const { return browser_context_; }
private:
content::BrowserContext* const browser_context_;
bool stopped_;
const scoped_ptr<base::ThreadChecker> thread_checker_;
DISALLOW_COPY_AND_ASSIGN(CastService);
};
} // namespace chromecast
#endif // CHROMECAST_SERVICE_CAST_SERVICE_H_
|