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

Unified Diff: ppapi/shared_impl/file_system_util.cc

Issue 1979733002: Add ability to clear content licenses (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: seperate file Created 4 years, 7 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: ppapi/shared_impl/file_system_util.cc
diff --git a/ppapi/shared_impl/file_system_util.cc b/ppapi/shared_impl/file_system_util.cc
index 25650d1c853916a0f64b7d3b0718140b2693539a..a8a5263331916f0cafd296bea9e4d7496a488a0c 100644
--- a/ppapi/shared_impl/file_system_util.cc
+++ b/ppapi/shared_impl/file_system_util.cc
@@ -5,6 +5,7 @@
#include "ppapi/shared_impl/file_system_util.h"
#include "base/logging.h"
+#include "ppapi/shared_impl/ppapi_constants.h"
namespace ppapi {
@@ -26,7 +27,7 @@ std::string IsolatedFileSystemTypeToRootName(
case PP_ISOLATEDFILESYSTEMTYPE_PRIVATE_CRX:
return "crxfs";
case PP_ISOLATEDFILESYSTEMTYPE_PRIVATE_PLUGINPRIVATE:
- return "pluginprivate";
+ return kPluginPrivateRootName;
default:
NOTREACHED() << type;
return std::string();

Powered by Google App Engine
This is Rietveld 408576698