blob: 04f7f8636c8a32e13e12ef81c5cbd600588c0b23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef HEADLESS_PUBLIC_UTIL_USER_AGENT_H_
#define HEADLESS_PUBLIC_UTIL_USER_AGENT_H_
#include <string>
namespace headless {
std::string BuildUserAgentFromProduct(const std::string& product);
std::string BuildUserAgentFromOSAndProduct(const std::string& os_info,
const std::string& product);
} // namespace headless
#endif // HEADLESS_PUBLIC_UTIL_USER_AGENT_H_
|