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

Side by Side Diff: webkit/chromeos/fileapi/remote_file_system_operation.cc

Issue 14265022: [Quota][FileAPI] Add quota policy to FileSystemOperationContext (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: drop .gitmodule change Created 7 years, 8 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/chromeos/fileapi/remote_file_system_operation.h" 5 #include "webkit/chromeos/fileapi/remote_file_system_operation.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/utf_string_conversions.h" 8 #include "base/utf_string_conversions.h"
9 #include "base/platform_file.h" 9 #include "base/platform_file.h"
10 #include "base/values.h" 10 #include "base/values.h"
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 const base::PlatformFileInfo& file_info, 312 const base::PlatformFileInfo& file_info,
313 const base::FilePath& platform_path, 313 const base::FilePath& platform_path,
314 const scoped_refptr<webkit_blob::ShareableFileReference>& file_ref) { 314 const scoped_refptr<webkit_blob::ShareableFileReference>& file_ref) {
315 callback.Run(result, file_info, platform_path, file_ref); 315 callback.Run(result, file_info, platform_path, file_ref);
316 } 316 }
317 317
318 void RemoteFileSystemOperation::DidOpenFile( 318 void RemoteFileSystemOperation::DidOpenFile(
319 const OpenFileCallback& callback, 319 const OpenFileCallback& callback,
320 base::PlatformFileError result, 320 base::PlatformFileError result,
321 base::PlatformFile file, 321 base::PlatformFile file,
322 base::ProcessHandle peer_handle) { 322 base::ProcessHandle peer_handle,
323 callback.Run(result, file, peer_handle); 323 quota::QuotaLimitType quota_limit_type) {
324 callback.Run(result, file, peer_handle, quota_limit_type);
324 } 325 }
325 326
326 } // namespace chromeos 327 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698