forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcast_service.h
65 lines (47 loc) · 1.82 KB
/
cast_service.h
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
// 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 <memory>
#include "base/callback.h"
#include "base/macros.h"
namespace base {
class ThreadChecker;
}
namespace chromecast {
class CastService {
public:
virtual ~CastService();
// Initializes/finalizes the cast service.
void Initialize();
void Finalize();
// Starts/stops the cast service.
void Start();
void Stop();
// Notify out-of-process (non-chrome renderers) of accessibility state.
virtual void AccessibilityStateChanged(bool enabled);
protected:
CastService();
// Implementation-specific initialization. Initialization of cast service's
// sub-components, and anything that requires IO operations should go here.
// Anything that should happen before cast service is started but doesn't need
// the sub-components to finish initializing should also go here.
virtual void InitializeInternal() = 0;
// Implementation-specific finalization. Any initializations done by
// InitializeInternal() should be finalized here.
virtual void FinalizeInternal() = 0;
// Implementation-specific start behavior. It basically starts the
// sub-component services and does additional initialization that cannot be
// done in the InitializationInternal().
virtual void StartInternal() = 0;
// Implementation-specific stop behavior. Any initializations done by
// StartInternal() should be finalized here.
virtual void StopInternal() = 0;
private:
bool stopped_;
const std::unique_ptr<base::ThreadChecker> thread_checker_;
DISALLOW_COPY_AND_ASSIGN(CastService);
};
} // namespace chromecast
#endif // CHROMECAST_SERVICE_CAST_SERVICE_H_