diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-09 18:02:59 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-09 18:02:59 +0000 |
commit | 7897cbc5870d5108345b66356056557bfb568617 (patch) | |
tree | 9b1502f9668a1800705c25d6ccc80a32ae5b1f91 /webkit/glue/SConscript | |
parent | bfac5ac48f74919234e5589edec5b07ebbb51378 (diff) | |
download | chromium_src-7897cbc5870d5108345b66356056557bfb568617.zip chromium_src-7897cbc5870d5108345b66356056557bfb568617.tar.gz chromium_src-7897cbc5870d5108345b66356056557bfb568617.tar.bz2 |
Compile fix on Linux
GURL constructor takes std::string or UTF16String not std::wstring
Remove the windows function _wtoi and use the cross platform function
StringToInt from string_util.h for converting the string to an int
Review URL: http://codereview.chromium.org/5202
Patch from icefox.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3109 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/SConscript')
-rw-r--r-- | webkit/glue/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/glue/SConscript b/webkit/glue/SConscript index cee6aab..18e55ac 100644 --- a/webkit/glue/SConscript +++ b/webkit/glue/SConscript @@ -18,6 +18,7 @@ if env['PLATFORM'] == 'win32': ) input_files = [ + 'dom_operations.cc', 'editor_client_impl.cc', 'glue_util.cc', 'image_decoder.cc', @@ -44,7 +45,6 @@ if env['PLATFORM'] == 'win32': 'cpp_bound_class.cc', 'cpp_variant.cc', 'debugger.cc', - 'dom_operations.cc', 'dom_serializer.cc', 'dragclient_impl.cc', 'entity_map.cc', |