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

Unified Diff: chrome/browser/extensions/api/copresence/copresence_translations.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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/api/copresence/copresence_translations.cc
diff --git a/chrome/browser/extensions/api/copresence/copresence_translations.cc b/chrome/browser/extensions/api/copresence/copresence_translations.cc
index 5fecde278bb7058a09ce259fce0e0e4502cdcfce..6eb38a94faec9c86c45edc2af5ee426afc62e7c5 100644
--- a/chrome/browser/extensions/api/copresence/copresence_translations.cc
+++ b/chrome/browser/extensions/api/copresence/copresence_translations.cc
@@ -9,7 +9,7 @@
#include "components/copresence/proto/enums.pb.h"
#include "components/copresence/proto/rpcs.pb.h"
-using copresence::AUDIBLE;
+using copresence::AUDIO_CONFIGURATION_AUDIBLE;
using copresence::AUDIO_CONFIGURATION_UNKNOWN;
using copresence::BROADCAST_AND_SCAN;
using copresence::BROADCAST_ONLY;
@@ -57,8 +57,8 @@ void SetTokenExchangeStrategy(const Strategy* strategy,
config == BROADCAST_SCAN_CONFIGURATION_UNKNOWN ?
default_config : config);
strategy_proto->set_audio_configuration(
- strategy->audible && *strategy->audible ?
- AUDIBLE : AUDIO_CONFIGURATION_UNKNOWN);
+ strategy->audible && *strategy->audible ? AUDIO_CONFIGURATION_AUDIBLE
+ : AUDIO_CONFIGURATION_UNKNOWN);
} else {
strategy_proto->set_broadcast_scan_configuration(default_config);
strategy_proto->set_audio_configuration(AUDIO_CONFIGURATION_UNKNOWN);

Powered by Google App Engine
This is Rietveld 408576698