Avi Drissman | d878a501 | 2022-09-12 19:13:30 | [diff] [blame] | 1 | // Copyright 2021 The Chromium Authors |
Guohui Deng | ec51320 | 2021-08-06 22:16:55 | [diff] [blame] | 2 | // 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 | |
| 10 | namespace chromecast { |
| 11 | |
Sandeep Vijayasekar | dcab40e | 2023-04-11 21:42:20 | [diff] [blame] | 12 | std::string GetDeviceUserAgentSuffix(); |
| 13 | std::string GetChromiumUserAgent(); |
| 14 | |
| 15 | std::string GetChromeKeyString(); |
Guohui Deng | ec51320 | 2021-08-06 22:16:55 | [diff] [blame] | 16 | std::string GetUserAgent(); |
| 17 | |
| 18 | } // namespace chromecast |
| 19 | |
| 20 | #endif // CHROMECAST_COMMON_USER_AGENT_H_ |