#ifndef CHROME_COMMON_EXTENSIONS_API_WEBRTC_AUDIO_PRIVATE_H__
#define CHROME_COMMON_EXTENSIONS_API_WEBRTC_AUDIO_PRIVATE_H__
#include <stdint.h>
#include <map>
#include <memory>
#include <optional>
#include <string>
#include <vector>
#include "base/values.h"
namespace extensions {
namespace api {
namespace webrtc_audio_private {
struct SinkInfo { … };
namespace GetSinks {
namespace Results {
base::Value::List Create(const std::vector<SinkInfo>& sink_info);
}
}
namespace GetAssociatedSink {
struct Params { … };
namespace Results {
base::Value::List Create(const std::string& sink_id);
}
}
namespace OnSinksChanged {
extern const char kEventName[];
base::Value::List Create();
}
}
}
}
#endif