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

Unified Diff: webkit/browser/fileapi/file_system_context.cc

Issue 17644006: Move files under webkit/browser/fileapi/... to chrome/browser/chromeos/fileapi/... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address review comments. Created 7 years, 6 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 | « webkit/browser/chromeos/fileapi/remote_file_system_operation.cc ('k') | webkit/storage_browser.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/browser/fileapi/file_system_context.cc
diff --git a/webkit/browser/fileapi/file_system_context.cc b/webkit/browser/fileapi/file_system_context.cc
index c9c3bc251c36f902db0a72bf518da1b5d3039b06..db62af7a9745c540e3a92ed1c3f12753d1bef3bf 100644
--- a/webkit/browser/fileapi/file_system_context.cc
+++ b/webkit/browser/fileapi/file_system_context.cc
@@ -31,10 +31,6 @@
#include "webkit/browser/quota/special_storage_policy.h"
#include "webkit/common/fileapi/file_system_util.h"
-#if defined(OS_CHROMEOS)
-#include "webkit/browser/chromeos/fileapi/cros_mount_point_provider.h"
-#endif
-
using quota::QuotaClient;
namespace fileapi {
@@ -89,19 +85,6 @@ FileSystemContext::FileSystemContext(
RegisterMountPointProvider(sandbox_provider_.get());
RegisterMountPointProvider(isolated_provider_.get());
-#if defined(OS_CHROMEOS)
- // TODO(kinuko): Move this out of webkit/fileapi layer.
- DCHECK(external_mount_points);
- chromeos::CrosMountPointProvider* cros_mount_provider =
- new chromeos::CrosMountPointProvider(
- special_storage_policy,
- external_mount_points,
- ExternalMountPoints::GetSystemInstance());
- cros_mount_provider->AddSystemMountPoints();
- additional_providers_.push_back(cros_mount_provider);
- DCHECK(cros_mount_provider->CanHandleType(kFileSystemTypeExternal));
-#endif
-
for (ScopedVector<FileSystemMountPointProvider>::const_iterator iter =
additional_providers_.begin();
iter != additional_providers_.end(); ++iter) {
« no previous file with comments | « webkit/browser/chromeos/fileapi/remote_file_system_operation.cc ('k') | webkit/storage_browser.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698