diff options
| author | RDevlin.Cronin@gmail.com <RDevlin.Cronin@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-17 09:33:49 +0000 |
|---|---|---|
| committer | RDevlin.Cronin@gmail.com <RDevlin.Cronin@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-17 09:33:49 +0000 |
| commit | fc670829eda3698d0385e1d6cffd4a5b63128383 (patch) | |
| tree | 33f34d0aee29dc1caa17bfb0d07a3f842ccbb0ab /chrome/browser/extensions/sandboxed_extension_unpacker_unittest.cc | |
| parent | 1d1b4a34f25746bb8d645051bf5aedff31781c0f (diff) | |
| download | chromium_src-fc670829eda3698d0385e1d6cffd4a5b63128383.zip chromium_src-fc670829eda3698d0385e1d6cffd4a5b63128383.tar.gz chromium_src-fc670829eda3698d0385e1d6cffd4a5b63128383.tar.bz2 | |
Updating extensions code to use UTF16
Changes std::string error to string16 in various locations of the Extensions file, spanning up the tree from ExtensionErrorReporter and Extension::InitFromValue, with conversion to string16 beginning at extension_l10n_util::LocalizeExtension and Extension::Create. Later patches can continue/expand the conversion.
BUG=71980
TEST=Run existing unit tests and browser tests, which have been adjusted for string16s.
Review URL: http://codereview.chromium.org/8890086
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114917 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/sandboxed_extension_unpacker_unittest.cc')
| -rw-r--r-- | chrome/browser/extensions/sandboxed_extension_unpacker_unittest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/extensions/sandboxed_extension_unpacker_unittest.cc b/chrome/browser/extensions/sandboxed_extension_unpacker_unittest.cc index b5cf742..68bc2e9 100644 --- a/chrome/browser/extensions/sandboxed_extension_unpacker_unittest.cc +++ b/chrome/browser/extensions/sandboxed_extension_unpacker_unittest.cc @@ -49,7 +49,7 @@ class MockSandboxedExtensionUnpackerClient const Extension* extension)); MOCK_METHOD1(OnUnpackFailure, - void(const std::string& error)); + void(const string16& error)); void DelegateToFake() { ON_CALL(*this, OnUnpackSuccess(_, _, _, _)) |
