OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef COMPONENTS_COPRESENCE_HANDLERS_AUDIO_AUDIO_DIRECTIVE_HANDLER_H_ | 5 #ifndef COMPONENTS_COPRESENCE_HANDLERS_AUDIO_AUDIO_DIRECTIVE_HANDLER_H_ |
6 #define COMPONENTS_COPRESENCE_HANDLERS_AUDIO_AUDIO_DIRECTIVE_HANDLER_H_ | 6 #define COMPONENTS_COPRESENCE_HANDLERS_AUDIO_AUDIO_DIRECTIVE_HANDLER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "components/copresence/mediums/audio/audio_manager.h" | 10 #include "components/copresence/mediums/audio/audio_manager.h" |
11 #include "components/copresence/public/copresence_constants.h" | 11 #include "components/copresence/public/copresence_constants.h" |
12 | 12 |
| 13 namespace base { |
| 14 class TimeDelta; |
| 15 } |
| 16 |
13 namespace copresence { | 17 namespace copresence { |
14 | 18 |
15 class Directive; | 19 class TokenInstruction; |
16 class WhispernetClient; | 20 class WhispernetClient; |
17 | 21 |
18 // The AudioDirectiveHandler handles audio transmit and receive instructions. | 22 // The AudioDirectiveHandler handles audio transmit and receive instructions. |
19 class AudioDirectiveHandler { | 23 class AudioDirectiveHandler { |
20 public: | 24 public: |
21 virtual ~AudioDirectiveHandler() {} | 25 virtual ~AudioDirectiveHandler() {} |
22 | 26 |
23 // Do not use this class before calling this. | 27 // Do not use this class before calling this. |
24 virtual void Initialize(WhispernetClient* whispernet_client, | 28 virtual void Initialize(WhispernetClient* whispernet_client, |
25 const TokensCallback& tokens_cb) = 0; | 29 const TokensCallback& tokens_cb) = 0; |
26 | 30 |
27 // Adds an instruction to our handler. The instruction will execute and be | 31 // Adds an instruction to our handler. The instruction will execute and be |
28 // removed after the ttl expires. | 32 // removed after the ttl expires. |
29 virtual void AddInstruction(const Directive& directive, | 33 virtual void AddInstruction(const TokenInstruction& instruction, |
30 const std::string& op_id) = 0; | 34 const std::string& op_id, |
| 35 base::TimeDelta ttl) = 0; |
31 | 36 |
32 // Removes all instructions associated with this operation id. | 37 // Removes all instructions associated with this operation id. |
33 virtual void RemoveInstructions(const std::string& op_id) = 0; | 38 virtual void RemoveInstructions(const std::string& op_id) = 0; |
34 | 39 |
35 // Returns the currently playing token. | 40 // Returns the currently playing token. |
36 virtual const std::string PlayingToken(AudioType type) const = 0; | 41 virtual const std::string PlayingToken(AudioType type) const = 0; |
37 | 42 |
38 // Returns if we have heard the currently playing audio token. | 43 // Returns if we have heard the currently playing audio token. |
39 virtual bool IsPlayingTokenHeard(AudioType type) const = 0; | 44 virtual bool IsPlayingTokenHeard(AudioType type) const = 0; |
40 }; | 45 }; |
41 | 46 |
42 } // namespace copresence | 47 } // namespace copresence |
43 | 48 |
44 #endif // COMPONENTS_COPRESENCE_HANDLERS_AUDIO_AUDIO_DIRECTIVE_HANDLER_H_ | 49 #endif // COMPONENTS_COPRESENCE_HANDLERS_AUDIO_AUDIO_DIRECTIVE_HANDLER_H_ |
OLD | NEW |