diff options
author | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-16 22:35:50 +0000 |
---|---|---|
committer | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-16 22:35:50 +0000 |
commit | d7196e3474c92f1e85c32f98ad564a32604fa535 (patch) | |
tree | ac137140b97ff1af774775e80e0708c15fa28f6a /webkit/build | |
parent | a65ed542245bbe6089590d06507892a704fb08f0 (diff) | |
download | chromium_src-d7196e3474c92f1e85c32f98ad564a32604fa535.zip chromium_src-d7196e3474c92f1e85c32f98ad564a32604fa535.tar.gz chromium_src-d7196e3474c92f1e85c32f98ad564a32604fa535.tar.bz2 |
Removed the GetProductVersion function from webkit_glue and replace it with the BuildUserAgent function.
The BuildUserAgent function has been deleted from user_agent.cc. The implementation of this function
in content\renderer_glue.cc calls the GetUserAgent API in ContentClient which is implemented by the embedder (Chrome).
Added implementations of the BuildUserAgent function for test_shell and DumpRenderTree. To build the user agent
string we need the webkit major and minor versions. Added getters for them in the webkit_glue namespace in the
user_agent.h/.cc files.
This helps reduce the implicit dependency of content on chrome.
BUG=82454
Review URL: http://codereview.chromium.org/7166004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@89415 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/build')
-rwxr-xr-x | webkit/build/webkit_version.py | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/webkit/build/webkit_version.py b/webkit/build/webkit_version.py index f488a2e..c365b18 100755 --- a/webkit/build/webkit_version.py +++ b/webkit/build/webkit_version.py @@ -12,7 +12,16 @@ import os import re import sys -sys.path.insert(0, '../../build/util') +# Get the full path of the current script which would be something like +# src/webkit/build/webkit_version.py and navigate backwards twice to strip the +# last two path components to get to the srcroot. +# This is to ensure that the script can load the lastchange module by updating +# the sys.path variable with the desired location. +path = os.path.dirname(os.path.realpath(__file__)) +path = os.path.dirname(os.path.dirname(path)) +path = os.path.join(path, 'build', 'util') + +sys.path.insert(0, path) import lastchange def ReadVersionFile(fname): |