blob: 5548104aaf35a86a19e9e9a3544fd2a982b2e64c (
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
// 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 CHROME_BROWSER_COPRESENCE_CHROME_WHISPERNET_CLIENT_H_
#define CHROME_BROWSER_COPRESENCE_CHROME_WHISPERNET_CLIENT_H_
#include <string>
#include "base/callback.h"
#include "base/macros.h"
#include "base/memory/scoped_vector.h"
#include "chrome/browser/copresence/chrome_whispernet_config.h"
#include "components/audio_modem/public/whispernet_client.h"
namespace content {
class BrowserContext;
}
namespace extensions {
struct Event;
class EventRouter;
namespace api {
namespace copresence_private {
struct AudioParameters;
}
}
} // namespace extensions
namespace media {
class AudioBusRefCounted;
}
// This class is responsible for communication with our whispernet_proxy
// extension that talks to the whispernet audio library.
class ChromeWhispernetClient final : public audio_modem::WhispernetClient {
public:
// The browser context needs to outlive this class.
explicit ChromeWhispernetClient(content::BrowserContext* browser_context);
~ChromeWhispernetClient() override;
// WhispernetClient overrides:
void Initialize(const audio_modem::SuccessCallback& init_callback) override;
void EncodeToken(const std::string& token_str,
audio_modem::AudioType type,
const audio_modem::TokenParameters token_params[2]) override;
void DecodeSamples(
audio_modem::AudioType type,
const std::string& samples,
const audio_modem::TokenParameters token_params[2]) override;
void RegisterTokensCallback(
const audio_modem::TokensCallback& tokens_callback) override;
void RegisterSamplesCallback(
const audio_modem::SamplesCallback& samples_callback) override;
audio_modem::TokensCallback GetTokensCallback() override;
audio_modem::SamplesCallback GetSamplesCallback() override;
audio_modem::SuccessCallback GetInitializedCallback() override;
static const char kWhispernetProxyExtensionId[];
private:
// Fire an event to configure whispernet with the given audio parameters.
void AudioConfiguration(const AudioParamData& params);
void SendEventIfLoaded(scoped_ptr<extensions::Event> event);
// This gets called when the proxy extension loads.
void OnExtensionLoaded(bool success);
content::BrowserContext* const browser_context_;
extensions::EventRouter* const event_router_;
std::string client_id_;
audio_modem::SuccessCallback extension_loaded_callback_;
audio_modem::SuccessCallback init_callback_;
audio_modem::TokensCallback tokens_callback_;
audio_modem::SamplesCallback samples_callback_;
ScopedVector<extensions::Event> queued_events_;
bool extension_loaded_;
DISALLOW_COPY_AND_ASSIGN(ChromeWhispernetClient);
};
#endif // CHROME_BROWSER_COPRESENCE_CHROME_WHISPERNET_CLIENT_H_
|