// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef NET_URL_REQUEST_STATIC_HTTP_USER_AGENT_SETTINGS_H_ #define NET_URL_REQUEST_STATIC_HTTP_USER_AGENT_SETTINGS_H_ #include <string> #include "base/compiler_specific.h" #include "net/base/http_user_agent_settings.h" #include "net/base/net_export.h" namespace net { // An implementation of |HttpUserAgentSettings| that provides configured // values for the HTTP Accept-Language and User-Agent headers. class NET_EXPORT StaticHttpUserAgentSettings : public HttpUserAgentSettings { … }; } // namespace net #endif // NET_URL_REQUEST_STATIC_HTTP_USER_AGENT_SETTINGS_H_