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

Unified Diff: chrome/browser/chromeos/extensions/file_browser_private_api.cc

Issue 10068007: Implement Content Security Policy for the File Manager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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/chromeos/extensions/file_browser_private_api.cc
diff --git a/chrome/browser/chromeos/extensions/file_browser_private_api.cc b/chrome/browser/chromeos/extensions/file_browser_private_api.cc
index 57c700d77e3ae81402a9e016b5ec08bd4d5634d2..dbefd7505fd241f9deaa62b53aeb1d66bee3daa7 100644
--- a/chrome/browser/chromeos/extensions/file_browser_private_api.cc
+++ b/chrome/browser/chromeos/extensions/file_browser_private_api.cc
@@ -1488,6 +1488,10 @@ bool FileDialogStringsFunction::RunImpl() {
if (gdata::util::IsGDataAvailable(profile_))
dict->SetString("ENABLE_GDATA", "1");
+#if defined(USE_ASH)
+ dict->SetString("ASH", "1");
+#endif
+
return true;
}

Powered by Google App Engine
This is Rietveld 408576698