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

Side by Side Diff: webkit/fileapi/local_file_system_operation.cc

Issue 15535006: Move browser-specific FileAPI code from webkit/fileapi to webkit/browser/fileapi (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "webkit/fileapi/local_file_system_operation.h" 5 #include "webkit/fileapi/local_file_system_operation.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/single_thread_task_runner.h" 8 #include "base/single_thread_task_runner.h"
9 #include "base/time.h" 9 #include "base/time.h"
10 #include "base/utf_string_conversions.h" 10 #include "base/utf_string_conversions.h"
11 #include "net/base/escape.h" 11 #include "net/base/escape.h"
12 #include "net/url_request/url_request_context.h" 12 #include "net/url_request/url_request_context.h"
13 #include "webkit/blob/shareable_file_reference.h" 13 #include "webkit/blob/shareable_file_reference.h"
14 #include "webkit/browser/fileapi/cross_operation_delegate.h"
14 #include "webkit/browser/fileapi/file_system_mount_point_provider.h" 15 #include "webkit/browser/fileapi/file_system_mount_point_provider.h"
15 #include "webkit/browser/fileapi/sandbox_file_stream_writer.h" 16 #include "webkit/browser/fileapi/sandbox_file_stream_writer.h"
16 #include "webkit/fileapi/async_file_util.h" 17 #include "webkit/fileapi/async_file_util.h"
17 #include "webkit/fileapi/cross_operation_delegate.h"
18 #include "webkit/fileapi/file_observers.h" 18 #include "webkit/fileapi/file_observers.h"
19 #include "webkit/fileapi/file_system_context.h" 19 #include "webkit/fileapi/file_system_context.h"
20 #include "webkit/fileapi/file_system_file_util.h" 20 #include "webkit/fileapi/file_system_file_util.h"
21 #include "webkit/fileapi/file_system_operation_context.h" 21 #include "webkit/fileapi/file_system_operation_context.h"
22 #include "webkit/fileapi/file_system_task_runners.h" 22 #include "webkit/fileapi/file_system_task_runners.h"
23 #include "webkit/fileapi/file_system_types.h" 23 #include "webkit/fileapi/file_system_types.h"
24 #include "webkit/fileapi/file_system_url.h" 24 #include "webkit/fileapi/file_system_url.h"
25 #include "webkit/fileapi/file_system_util.h" 25 #include "webkit/fileapi/file_system_util.h"
26 #include "webkit/fileapi/file_writer_delegate.h" 26 #include "webkit/fileapi/file_writer_delegate.h"
27 #include "webkit/fileapi/remove_operation_delegate.h" 27 #include "webkit/fileapi/remove_operation_delegate.h"
(...skipping 843 matching lines...) Expand 10 before | Expand all | Expand 10 after
871 } 871 }
872 872
873 bool LocalFileSystemOperation::SetPendingOperationType(OperationType type) { 873 bool LocalFileSystemOperation::SetPendingOperationType(OperationType type) {
874 if (pending_operation_ != kOperationNone) 874 if (pending_operation_ != kOperationNone)
875 return false; 875 return false;
876 pending_operation_ = type; 876 pending_operation_ = type;
877 return true; 877 return true;
878 } 878 }
879 879
880 } // namespace fileapi 880 } // namespace fileapi
OLDNEW
« no previous file with comments | « webkit/fileapi/isolated_mount_point_provider.cc ('k') | webkit/fileapi/local_file_system_operation_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698