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

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

Issue 9558006: Rename content/{common,browser}/file_system to fileapi and move blob stuff into it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 10 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: content/browser/fileapi/fileapi_message_filter.h
diff --git a/content/browser/file_system/file_and_blob_message_filter.h b/content/browser/fileapi/fileapi_message_filter.h
similarity index 93%
rename from content/browser/file_system/file_and_blob_message_filter.h
rename to content/browser/fileapi/fileapi_message_filter.h
index debf3567037a387bdb36eb43e3e81103965ddeb5..348520416523db60664787558c1835bd23ecc163 100644
--- a/content/browser/file_system/file_and_blob_message_filter.h
+++ b/content/browser/fileapi/fileapi_message_filter.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CONTENT_BROWSER_FILE_SYSTEM_FILE_AND_BLOB_MESSAGE_FILTER_H_
-#define CONTENT_BROWSER_FILE_SYSTEM_FILE_AND_BLOB_MESSAGE_FILTER_H_
+#ifndef CONTENT_BROWSER_FILEAPI_FILEAPI_MESSAGE_FILTER_H_
+#define CONTENT_BROWSER_FILEAPI_FILEAPI_MESSAGE_FILTER_H_
#include <string>
@@ -39,21 +39,21 @@ namespace webkit_blob {
class ShareableFileReference;
}
-class FileAndBlobMessageFilter : public content::BrowserMessageFilter {
+class FileAPIMessageFilter : public content::BrowserMessageFilter {
public:
// Used by the renderer process host on the UI thread.
- FileAndBlobMessageFilter(
+ FileAPIMessageFilter(
int process_id,
net::URLRequestContextGetter* request_context_getter,
fileapi::FileSystemContext* file_system_context,
ChromeBlobStorageContext* blob_storage_context);
// Used by the worker process host on the IO thread.
- FileAndBlobMessageFilter(
+ FileAPIMessageFilter(
int process_id,
net::URLRequestContext* request_context,
fileapi::FileSystemContext* file_system_context,
ChromeBlobStorageContext* blob_storage_context);
- virtual ~FileAndBlobMessageFilter();
+ virtual ~FileAPIMessageFilter();
// content::BrowserMessageFilter implementation.
virtual void OnChannelConnected(int32 peer_pid) OVERRIDE;
@@ -175,7 +175,7 @@ class FileAndBlobMessageFilter : public content::BrowserMessageFilter {
// all of them when the renderer process dies.
base::hash_set<std::string> blob_urls_;
- DISALLOW_COPY_AND_ASSIGN(FileAndBlobMessageFilter);
+ DISALLOW_COPY_AND_ASSIGN(FileAPIMessageFilter);
};
-#endif // CONTENT_BROWSER_FILE_SYSTEM_FILE_AND_BLOB_MESSAGE_FILTER_H_
+#endif // CONTENT_BROWSER_FILEAPI_FILEAPI_MESSAGE_FILTER_H_

Powered by Google App Engine
This is Rietveld 408576698