Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(454)

Side by Side Diff: components/copresence/handlers/directive_handler.cc

Issue 637223011: Redesign the copresence audio handlers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git/+/master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 #include "components/copresence/handlers/directive_handler.h" 5 #include "components/copresence/handlers/directive_handler.h"
6 6
7 #include "base/time/time.h" 7 #include "base/time/time.h"
8 #include "components/copresence/handlers/audio/audio_directive_handler.h" 8 #include "components/copresence/handlers/audio/audio_directive_handler.h"
9 #include "components/copresence/proto/data.pb.h" 9 #include "components/copresence/proto/data.pb.h"
10 10
11 namespace copresence { 11 namespace copresence {
12 12
13 DirectiveHandler::DirectiveHandler() {} 13 DirectiveHandler::DirectiveHandler() {}
14 14
15 void DirectiveHandler::Initialize( 15 void DirectiveHandler::Initialize(
16 const AudioRecorder::DecodeSamplesCallback& decode_cb, 16 const AudioManager::DecodeSamplesCallback& decode_cb,
17 const AudioDirectiveHandler::EncodeTokenCallback& encode_cb) { 17 const AudioManager::EncodeTokenCallback& encode_cb) {
18 audio_handler_.reset(new AudioDirectiveHandler(decode_cb, encode_cb)); 18 audio_handler_.reset(new AudioDirectiveHandler());
19 audio_handler_->Initialize(); 19 audio_handler_->Initialize(decode_cb, encode_cb);
20 } 20 }
21 21
22 DirectiveHandler::~DirectiveHandler() { 22 DirectiveHandler::~DirectiveHandler() {
23 } 23 }
24 24
25 void DirectiveHandler::AddDirective(const Directive& directive) { 25 void DirectiveHandler::AddDirective(const Directive& directive) {
26 // We only handle Token directives; wifi/ble requests aren't implemented. 26 // We only handle Token directives; wifi/ble requests aren't implemented.
27 DCHECK_EQ(directive.instruction_type(), TOKEN); 27 DCHECK_EQ(directive.instruction_type(), TOKEN);
28 28
29 std::string op_id; 29 std::string op_id;
(...skipping 16 matching lines...) Expand all
46 ti, op_id, base::TimeDelta::FromMilliseconds(directive.ttl_millis())); 46 ti, op_id, base::TimeDelta::FromMilliseconds(directive.ttl_millis()));
47 } 47 }
48 } 48 }
49 49
50 void DirectiveHandler::RemoveDirectives(const std::string& op_id) { 50 void DirectiveHandler::RemoveDirectives(const std::string& op_id) {
51 DCHECK(audio_handler_.get()) << "Clients must call Initialize() before " 51 DCHECK(audio_handler_.get()) << "Clients must call Initialize() before "
52 << "any other DirectiveHandler methods."; 52 << "any other DirectiveHandler methods.";
53 audio_handler_->RemoveInstructions(op_id); 53 audio_handler_->RemoveInstructions(op_id);
54 } 54 }
55 55
56 const std::string& DirectiveHandler::CurrentAudibleToken() const { 56 const std::string& DirectiveHandler::GetCurrentAudioToken(
57 return audio_handler_->PlayingAudibleToken(); 57 AudioType type) const {
58 } 58 return audio_handler_->PlayingToken(type);
59
60 const std::string& DirectiveHandler::CurrentInaudibleToken() const {
61 return audio_handler_->PlayingInaudibleToken();
62 } 59 }
63 60
64 } // namespace copresence 61 } // namespace copresence
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698