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

Unified Diff: chrome/browser/extensions/convert_user_script.cc

Issue 19547009: Move ".crx"/".pem" constants and extension_filenames constants into extensions/common/constants.cc. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 months 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
Index: chrome/browser/extensions/convert_user_script.cc
diff --git a/chrome/browser/extensions/convert_user_script.cc b/chrome/browser/extensions/convert_user_script.cc
index 0d79540bb249ba3bb5f21b1b4a844eb32cd721b9..f767a19553591f779e539174e45a5412ebdd5b6b 100644
--- a/chrome/browser/extensions/convert_user_script.cc
+++ b/chrome/browser/extensions/convert_user_script.cc
@@ -156,7 +156,8 @@ scoped_refptr<Extension> ConvertUserScriptToExtension(
root->Set(keys::kContentScripts, content_scripts);
- base::FilePath manifest_path = temp_dir.path().Append(kManifestFilename);
+ base::FilePath manifest_path = temp_dir.path().Append(
+ filenames::kManifestFilename);
JSONFileValueSerializer serializer(manifest_path);
if (!serializer.Serialize(*root)) {
*error = ASCIIToUTF16("Could not write JSON.");

Powered by Google App Engine
This is Rietveld 408576698