blob: 04f7f8636c8a32e13e12ef81c5cbd600588c0b23 [file] [log] [blame]
// 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_