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

Side by Side Diff: trunk/src/content/renderer/pepper/quota_file_io.cc

Issue 60323002: Revert 232547 "Pepper: Move FileIO host from renderer to browser." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 1 month 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 "content/renderer/pepper/quota_file_io.h" 5 #include "content/renderer/pepper/quota_file_io.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/location.h" 10 #include "base/location.h"
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 pending_callbacks_.pop_front(); 350 pending_callbacks_.pop_front();
351 DCHECK(pending_callbacks_.empty()); 351 DCHECK(pending_callbacks_.empty());
352 int64_t delta = (error != base::PLATFORM_FILE_OK) ? 0 : 352 int64_t delta = (error != base::PLATFORM_FILE_OK) ? 0 :
353 new_file_size - cached_file_size_; 353 new_file_size - cached_file_size_;
354 354
355 delegate_->DidUpdateFile(file_url_, delta); 355 delegate_->DidUpdateFile(file_url_, delta);
356 inflight_operations_ = 0; 356 inflight_operations_ = 0;
357 } 357 }
358 358
359 } // namespace content 359 } // namespace content
OLDNEW
« no previous file with comments | « trunk/src/content/renderer/pepper/quota_file_io.h ('k') | trunk/src/content/renderer/pepper/quota_file_io_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698