blob: 29d413c5c35673111bc2c2c7f173e3a97a185afe [file] [log] [blame]
Avi Drissmand878a5012022-09-12 19:13:301// Copyright 2021 The Chromium Authors
Guohui Dengec513202021-08-06 22:16:552// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef CHROMECAST_COMMON_USER_AGENT_H_
6#define CHROMECAST_COMMON_USER_AGENT_H_
7
8#include <string>
9
10namespace chromecast {
11
Sandeep Vijayasekardcab40e2023-04-11 21:42:2012std::string GetDeviceUserAgentSuffix();
13std::string GetChromiumUserAgent();
14
15std::string GetChromeKeyString();
Guohui Dengec513202021-08-06 22:16:5516std::string GetUserAgent();
17
18} // namespace chromecast
19
20#endif // CHROMECAST_COMMON_USER_AGENT_H_