summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/convert_web_app.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/extensions/convert_web_app.cc')
-rw-r--r--chrome/browser/extensions/convert_web_app.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/extensions/convert_web_app.cc b/chrome/browser/extensions/convert_web_app.cc
index f150fa5..54fe5dd 100644
--- a/chrome/browser/extensions/convert_web_app.cc
+++ b/chrome/browser/extensions/convert_web_app.cc
@@ -102,7 +102,7 @@ scoped_refptr<Extension> ConvertWebAppToExtension(
}
// Create the manifest
- scoped_ptr<DictionaryValue> root(new DictionaryValue);
+ scoped_ptr<base::DictionaryValue> root(new base::DictionaryValue);
if (!web_app.is_bookmark_app)
root->SetString(keys::kPublicKey, GenerateKey(web_app.manifest_url));
else
@@ -120,7 +120,7 @@ scoped_refptr<Extension> ConvertWebAppToExtension(
root->SetString(keys::kLaunchContainer, web_app.launch_container);
// Add the icons.
- DictionaryValue* icons = new DictionaryValue();
+ base::DictionaryValue* icons = new base::DictionaryValue();
root->Set(keys::kIcons, icons);
for (size_t i = 0; i < web_app.icons.size(); ++i) {
std::string size = base::StringPrintf("%i", web_app.icons[i].width);