| Index: chrome/browser/extensions/api/storage/settings_frontend_unittest.cc
|
| diff --git a/chrome/browser/extensions/api/storage/settings_frontend_unittest.cc b/chrome/browser/extensions/api/storage/settings_frontend_unittest.cc
|
| index 55bbaeb8650266207002fc1c588866bdb6256015..9eb8e45860957ab0053274c53a26442572b2197b 100644
|
| --- a/chrome/browser/extensions/api/storage/settings_frontend_unittest.cc
|
| +++ b/chrome/browser/extensions/api/storage/settings_frontend_unittest.cc
|
| @@ -35,7 +35,7 @@ scoped_ptr<Value> CreateKilobyte() {
|
| for (int i = 0; i < 1024; ++i) {
|
| kilobyte_string += "a";
|
| }
|
| - return scoped_ptr<Value>(Value::CreateStringValue(kilobyte_string));
|
| + return scoped_ptr<Value>(new base::StringValue(kilobyte_string));
|
| }
|
|
|
| // Creates a megabyte of data.
|
| @@ -47,7 +47,7 @@ scoped_ptr<Value> CreateMegabyte() {
|
| return scoped_ptr<Value>(megabyte);
|
| }
|
|
|
| -}
|
| +} // namespace
|
|
|
| class ExtensionSettingsFrontendTest : public testing::Test {
|
| public:
|
|
|