diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-20 19:25:42 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-20 19:25:42 +0000 |
commit | 00e3f152083aea092353b3d284c368b48136f33c (patch) | |
tree | 081df57119ba9301bebd7c7091efc4acab5accc9 /webkit/glue/dom_operations.h | |
parent | 4e6f2f037e6d1956bc431ac37a72d8e6871586d8 (diff) | |
download | chromium_src-00e3f152083aea092353b3d284c368b48136f33c.zip chromium_src-00e3f152083aea092353b3d284c368b48136f33c.tar.gz chromium_src-00e3f152083aea092353b3d284c368b48136f33c.tar.bz2 |
Convert some structures in webkit/glue to string16.
R=yaar
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/305002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29549 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/dom_operations.h')
-rw-r--r-- | webkit/glue/dom_operations.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/webkit/glue/dom_operations.h b/webkit/glue/dom_operations.h index 26dbabe..af61698 100644 --- a/webkit/glue/dom_operations.h +++ b/webkit/glue/dom_operations.h @@ -74,11 +74,11 @@ struct WebApplicationInfo { // Title of the application. This is set from the meta tag whose name is // 'application-name'. - std::wstring title; + string16 title; // Description of the application. This is set from the meta tag whose name // is 'description'. - std::wstring description; + string16 description; // URL for the app. This is set from the meta tag whose name is // 'application-url'. @@ -94,7 +94,7 @@ struct WebApplicationInfo { // the attribute are added to sizes, or is_any is set to true. // // You shouldn't have a need to invoke this directly, it's public for testing. -bool ParseIconSizes(const std::wstring& text, +bool ParseIconSizes(const string16& text, std::vector<gfx::Size>* sizes, bool* is_any); |