Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(204)

Side by Side Diff: webkit/user_agent/user_agent_util.h

Issue 15702003: Move webkit/user_agent/ into webkit/common (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « webkit/user_agent/user_agent_unittest.cc ('k') | webkit/user_agent/user_agent_util.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef WEBKIT_USER_AGENT_USER_AGENT_UTIL_H_
6 #define WEBKIT_USER_AGENT_USER_AGENT_UTIL_H_
7
8 #include <string>
9
10 #include "base/basictypes.h"
11 #include "webkit/user_agent/webkit_user_agent_export.h"
12
13 namespace webkit_glue {
14
15 // Builds a User-agent compatible string that describes the OS and CPU type.
16 WEBKIT_USER_AGENT_EXPORT std::string BuildOSCpuInfo();
17
18 // Returns the WebKit version, in the form "major.minor (branch@revision)".
19 WEBKIT_USER_AGENT_EXPORT std::string GetWebKitVersion();
20
21 // The following 2 functions return the major and minor webkit versions.
22 WEBKIT_USER_AGENT_EXPORT int GetWebKitMajorVersion();
23 WEBKIT_USER_AGENT_EXPORT int GetWebKitMinorVersion();
24
25 // Helper function to generate a full user agent string from a short
26 // product name.
27 WEBKIT_USER_AGENT_EXPORT std::string BuildUserAgentFromProduct(
28 const std::string& product);
29
30 // Builds a full user agent string given a string describing the OS and a
31 // product name.
32 WEBKIT_USER_AGENT_EXPORT std::string BuildUserAgentFromOSAndProduct(
33 const std::string& os_info,
34 const std::string& product);
35
36 } // namespace webkit_glue
37
38 #endif // WEBKIT_USER_AGENT_USER_AGENT_UTIL_H_
OLDNEW
« no previous file with comments | « webkit/user_agent/user_agent_unittest.cc ('k') | webkit/user_agent/user_agent_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698