Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7481)

Unified Diff: chrome/common/content_settings_helper.h

Issue 6044007: Remove wstring from TableModel.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/common/content_settings_helper.h
===================================================================
--- chrome/common/content_settings_helper.h (revision 70272)
+++ chrome/common/content_settings_helper.h (working copy)
@@ -8,6 +8,8 @@
#include <string>
+#include "base/string16.h"
+
class GURL;
namespace content_settings_helper {
@@ -15,7 +17,7 @@
// Return simplified string representing origin. If origin is using http or
// the standard port, those parts are not included in the output.
std::string OriginToString(const GURL& origin);
-std::wstring OriginToWString(const GURL& origin);
+string16 OriginToString16(const GURL& origin);
} // namespace content_settings_helper

Powered by Google App Engine
This is Rietveld 408576698