blob: a3326b92cd229fdc7d6908e83e7d02706e8f871b [file] [log] [blame]
// Copyright 2018 The Cobalt Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef COBALT_BROWSER_USER_AGENT_STRING_H_
#define COBALT_BROWSER_USER_AGENT_STRING_H_
#include <string>
#include "base/optional.h"
#include "cobalt/browser/user_agent_platform_info.h"
namespace cobalt {
namespace browser {
// Function that will query Starboard and populate a UserAgentPlatformInfo
// structure based on those results. This is de-coupled from
// CreateUserAgentString() so that the common logic in CreateUserAgentString()
// can be easily unit tested.
UserAgentPlatformInfo GetUserAgentPlatformInfoFromSystem();
// This function is deterministic and non-dependent on global variables and
// state. It is dependent only on |platform_info|.
std::string CreateUserAgentString(const UserAgentPlatformInfo& platform_info);
} // namespace browser
} // namespace cobalt
#endif // COBALT_BROWSER_USER_AGENT_STRING_H_