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

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

Issue 10869073: Split user agent code out of the 'glue' target (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to trunk Created 8 years, 3 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 | « content/shell/shell_content_client.cc ('k') | webkit/glue/user_agent.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_GLUE_USER_AGENT_H_
6 #define WEBKIT_GLUE_USER_AGENT_H_
7
8 #include <string>
9
10 #include "base/basictypes.h"
11
12 namespace webkit_glue {
13
14 // Builds a User-agent compatible string that describes the OS and CPU type.
15 std::string BuildOSCpuInfo();
16
17 // Returns the WebKit version, in the form "major.minor (branch@revision)".
18 std::string GetWebKitVersion();
19
20 // The following 2 functions return the major and minor webkit versions.
21 int GetWebKitMajorVersion();
22 int GetWebKitMinorVersion();
23
24 // Helper function to generate a full user agent string from a short
25 // product name.
26 std::string BuildUserAgentFromProduct(const std::string& product);
27
28 // Builds a full user agent string given a string describing the OS and a
29 // product name.
30 std::string BuildUserAgentFromOSAndProduct(const std::string& os_info,
31 const std::string& product);
32
33 } // namespace webkit_glue
34
35 #endif // WEBKIT_GLUE_USER_AGENT_H_
OLDNEW
« no previous file with comments | « content/shell/shell_content_client.cc ('k') | webkit/glue/user_agent.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698