summaryrefslogtreecommitdiff
path: root/chromium/weblayer/browser/user_agent.h
blob: 58921df111b90e0bbd5bf43497974c5a2e0c0580 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright 2020 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 WEBLAYER_BROWSER_USER_AGENT_H_
#define WEBLAYER_BROWSER_USER_AGENT_H_

#include <string>

namespace blink {
struct UserAgentMetadata;
}

namespace weblayer {

// Returns the product used in building the user-agent.
std::string GetProduct();

std::string GetUserAgent();

blink::UserAgentMetadata GetUserAgentMetadata();

}  // namespace weblayer

#endif  // WEBLAYER_BROWSER_USER_AGENT_H_