Index: chrome/common/extensions/extension_set_unittest.cc |
=================================================================== |
--- chrome/common/extensions/extension_set_unittest.cc (revision 182296) |
+++ chrome/common/extensions/extension_set_unittest.cc (working copy) |
@@ -25,7 +25,7 @@ |
#endif |
path = path.AppendASCII(name); |
- DictionaryValue manifest; |
+ base::DictionaryValue manifest; |
manifest.SetString("name", name); |
manifest.SetString("version", "1"); |
@@ -33,9 +33,9 @@ |
manifest.SetString("app.launch.web_url", launch_url); |
if (!extent.empty()) { |
- ListValue* urls = new ListValue(); |
+ base::ListValue* urls = new base::ListValue(); |
manifest.Set("app.urls", urls); |
- urls->Append(Value::CreateStringValue(extent)); |
+ urls->Append(new base::StringValue(extent)); |
} |
std::string error; |
@@ -46,7 +46,7 @@ |
return extension; |
} |
-} // namespace |
+} // namespace |
TEST(ExtensionSetTest, ExtensionSet) { |
scoped_refptr<Extension> ext1(CreateTestExtension( |