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

Unified Diff: chrome/common/extensions/extension_unpacker.h

Issue 8890086: Issue 71980: Extensions code should use UTF-16 for user-visible Unicode strings (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 9 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
« no previous file with comments | « chrome/common/extensions/extension_error_utils.cc ('k') | chrome/common/extensions/extension_unpacker.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/extension_unpacker.h
===================================================================
--- chrome/common/extensions/extension_unpacker.h (revision 114888)
+++ chrome/common/extensions/extension_unpacker.h (working copy)
@@ -59,7 +59,7 @@
static bool ReadMessageCatalogsFromFile(const FilePath& extension_path,
base::DictionaryValue* catalogs);
- const std::string& error_message() { return error_message_; }
+ const string16& error_message() { return error_message_; }
base::DictionaryValue* parsed_manifest() {
return parsed_manifest_.get();
}
@@ -109,7 +109,7 @@
scoped_ptr<base::DictionaryValue> parsed_catalogs_;
// The last error message that was set. Empty if there were no errors.
- std::string error_message_;
+ string16 error_message_;
DISALLOW_COPY_AND_ASSIGN(ExtensionUnpacker);
};
« no previous file with comments | « chrome/common/extensions/extension_error_utils.cc ('k') | chrome/common/extensions/extension_unpacker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698