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

Unified Diff: content/browser/fileapi/fileapi_message_filter.cc

Issue 2867693004: Snapshot of all changes to get jumbo in blink and content.
Patch Set: Exclude certain files from jumbo because of a Windows problem Created 3 years, 3 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
« no previous file with comments | « content/browser/download/download_worker.cc ('k') | content/browser/frame_host/navigation_handle_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/fileapi/fileapi_message_filter.cc
diff --git a/content/browser/fileapi/fileapi_message_filter.cc b/content/browser/fileapi/fileapi_message_filter.cc
index cb152ccfc97ca5fecfa19bd13066b967f7f03f0b..47b34080975f8e515468a6b9f82f4726421930c4 100644
--- a/content/browser/fileapi/fileapi_message_filter.cc
+++ b/content/browser/fileapi/fileapi_message_filter.cc
@@ -54,7 +54,7 @@ namespace content {
namespace {
-const uint32_t kFilteredMessageClasses[] = {FileSystemMsgStart, BlobMsgStart};
+const uint32_t kFileApiFilteredMessageClasses[] = {FileSystemMsgStart, BlobMsgStart};
void RevokeFilePermission(int child_id, const base::FilePath& path) {
ChildProcessSecurityPolicyImpl::GetInstance()->RevokeAllPermissionsForFile(
@@ -68,8 +68,8 @@ FileAPIMessageFilter::FileAPIMessageFilter(
net::URLRequestContextGetter* request_context_getter,
storage::FileSystemContext* file_system_context,
ChromeBlobStorageContext* blob_storage_context)
- : BrowserMessageFilter(kFilteredMessageClasses,
- arraysize(kFilteredMessageClasses)),
+ : BrowserMessageFilter(kFileApiFilteredMessageClasses,
+ arraysize(kFileApiFilteredMessageClasses)),
process_id_(process_id),
context_(file_system_context),
security_policy_(ChildProcessSecurityPolicyImpl::GetInstance()),
@@ -86,8 +86,8 @@ FileAPIMessageFilter::FileAPIMessageFilter(
net::URLRequestContext* request_context,
storage::FileSystemContext* file_system_context,
ChromeBlobStorageContext* blob_storage_context)
- : BrowserMessageFilter(kFilteredMessageClasses,
- arraysize(kFilteredMessageClasses)),
+ : BrowserMessageFilter(kFileApiFilteredMessageClasses,
+ arraysize(kFileApiFilteredMessageClasses)),
process_id_(process_id),
context_(file_system_context),
security_policy_(ChildProcessSecurityPolicyImpl::GetInstance()),
« no previous file with comments | « content/browser/download/download_worker.cc ('k') | content/browser/frame_host/navigation_handle_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698