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

Side by Side Diff: webkit/browser/fileapi/recursive_operation_delegate.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) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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/recursive_operation_delegate.h" 5 #include "webkit/browser/fileapi/recursive_operation_delegate.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "webkit/fileapi/file_system_context.h" 8 #include "webkit/fileapi/file_system_context.h"
9 #include "webkit/fileapi/file_system_operation_context.h" 9 #include "webkit/fileapi/file_system_operation_context.h"
10 #include "webkit/fileapi/local_file_system_operation.h" 10 #include "webkit/fileapi/local_file_system_operation.h"
11 11
12 namespace fileapi { 12 namespace fileapi {
13 13
14 namespace { 14 namespace {
15 // Don't start too many inflight operations. 15 // Don't start too many inflight operations.
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 base::PlatformFileError error) { 135 base::PlatformFileError error) {
136 if (error == base::PLATFORM_FILE_ERROR_NOT_A_FILE) { 136 if (error == base::PLATFORM_FILE_ERROR_NOT_A_FILE) {
137 // It wasn't a file either; returns with the previous error. 137 // It wasn't a file either; returns with the previous error.
138 callback_.Run(previous_error); 138 callback_.Run(previous_error);
139 return; 139 return;
140 } 140 }
141 DidProcessFile(error); 141 DidProcessFile(error);
142 } 142 }
143 143
144 } // namespace fileapi 144 } // namespace fileapi
OLDNEW
« no previous file with comments | « webkit/browser/fileapi/recursive_operation_delegate.h ('k') | webkit/browser/fileapi/sandbox_mount_point_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698