summaryrefslogtreecommitdiffstats
path: root/webkit/glue/dom_operations.h
diff options
context:
space:
mode:
authordarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-20 19:25:42 +0000
committerdarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-20 19:25:42 +0000
commit00e3f152083aea092353b3d284c368b48136f33c (patch)
tree081df57119ba9301bebd7c7091efc4acab5accc9 /webkit/glue/dom_operations.h
parent4e6f2f037e6d1956bc431ac37a72d8e6871586d8 (diff)
downloadchromium_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.h6
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);