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

Unified Diff: components/copresence/public/copresence_delegate.h

Issue 865483005: Creating the audio_modem component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Small fixes Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: components/copresence/public/copresence_delegate.h
diff --git a/components/copresence/public/copresence_delegate.h b/components/copresence/public/copresence_delegate.h
index b9097421f316b31b6cd3bab43e15e1aef52ea918..363102be94e5ae7357eda74c2badc4bf358fc017 100644
--- a/components/copresence/public/copresence_delegate.h
+++ b/components/copresence/public/copresence_delegate.h
@@ -18,10 +18,13 @@ namespace net {
class URLRequestContextGetter;
}
+namespace audio_modem {
+class WhispernetClient;
+}
+
namespace copresence {
class Message;
-class WhispernetClient;
// AUDIO_FAIL indicates that we weren't able to hear the audio token that
// we were playing.
@@ -52,8 +55,8 @@ class CopresenceDelegate {
virtual const std::string GetProjectId(const std::string& app_id) const = 0;
- // Thw WhispernetClient must outlive the CopresenceManager.
- virtual WhispernetClient* GetWhispernetClient() = 0;
+ // The WhispernetClient must outlive the CopresenceManager.
+ virtual audio_modem::WhispernetClient* GetWhispernetClient() = 0;
// Clients may optionally provide a GCMDriver to receive messages from.
// If no driver is available, this can return null.

Powered by Google App Engine
This is Rietveld 408576698