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

Unified Diff: components/copresence/test/fake_directive_handler.cc

Issue 865483005: Creating the audio_modem component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merging again 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/test/fake_directive_handler.cc
diff --git a/components/copresence/test/fake_directive_handler.cc b/components/copresence/test/fake_directive_handler.cc
index 7ddbc1a5b0cbf42b2094a0b576031e99255a5dc9..5113133059e5910f6ffdc82e641567e64a9f64a8 100644
--- a/components/copresence/test/fake_directive_handler.cc
+++ b/components/copresence/test/fake_directive_handler.cc
@@ -20,12 +20,13 @@ void FakeDirectiveHandler::RemoveDirectives(const std::string& op_id) {
removed_directives_.push_back(op_id);
}
-const std::string FakeDirectiveHandler::GetCurrentAudioToken(AudioType type)
- const {
- return type == AUDIBLE ? "current audible" : "current inaudible";
+const std::string
+FakeDirectiveHandler::GetCurrentAudioToken(audio_modem::AudioType type) const {
+ return type == audio_modem::AUDIBLE ? "current audible" : "current inaudible";
}
-bool FakeDirectiveHandler::IsAudioTokenHeard(AudioType type) const {
+bool FakeDirectiveHandler::IsAudioTokenHeard(
+ audio_modem::AudioType type) const {
return true;
}
« no previous file with comments | « components/copresence/test/fake_directive_handler.h ('k') | components/copresence/test/stub_whispernet_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698