diff options
author | tony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-14 07:10:41 +0000 |
---|---|---|
committer | tony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-14 07:10:41 +0000 |
commit | b15791e725c6ccbdd745ea82162f350ecf11f0ba (patch) | |
tree | 953be7cdf710428cf883cbd55fc0e9da77707299 /webkit | |
parent | f58d1a95313947cb6a03b8b136f34cc66b127e89 (diff) | |
download | chromium_src-b15791e725c6ccbdd745ea82162f350ecf11f0ba.zip chromium_src-b15791e725c6ccbdd745ea82162f350ecf11f0ba.tar.gz chromium_src-b15791e725c6ccbdd745ea82162f350ecf11f0ba.tar.bz2 |
Fix the DumpRenderTree compile.
I added this method to webkit_glue in r44435, but forgot to
add it to this file.
Review URL: http://codereview.chromium.org/1566042
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@44453 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/support/webkit_support_glue.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/webkit/support/webkit_support_glue.cc b/webkit/support/webkit_support_glue.cc index 70d35fa..d735521 100644 --- a/webkit/support/webkit_support_glue.cc +++ b/webkit/support/webkit_support_glue.cc @@ -44,4 +44,8 @@ base::StringPiece GetDataResource(int resource_id) { return ""; } +std::string GetProductVersion() { + return std::string("DumpRenderTree/0.0.0.0"); +} + } // namespace webkit_glue |