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

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

Issue 20777009: A few more cleanups to the pepper code. Dispatch IPCs in the sockets implementations directly by ha… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix browsertest Created 7 years, 4 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 "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"
11 #include "base/memory/weak_ptr.h" 11 #include "base/memory/weak_ptr.h"
12 #include "base/message_loop/message_loop_proxy.h" 12 #include "base/message_loop/message_loop_proxy.h"
13 #include "base/stl_util.h" 13 #include "base/stl_util.h"
14 #include "base/task_runner_util.h" 14 #include "base/task_runner_util.h"
15 #include "content/renderer/pepper/host_globals.h" 15 #include "content/renderer/pepper/host_globals.h"
16 #include "content/renderer/pepper/resource_helper.h"
17 16
18 using base::PlatformFile; 17 using base::PlatformFile;
19 using base::PlatformFileError; 18 using base::PlatformFileError;
20 using quota::StorageType; 19 using quota::StorageType;
21 20
22 namespace content { 21 namespace content {
23 22
24 namespace { 23 namespace {
25 StorageType PPFileSystemTypeToQuotaStorageType(PP_FileSystemType type) { 24 StorageType PPFileSystemTypeToQuotaStorageType(PP_FileSystemType type) {
26 switch (type) { 25 switch (type) {
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
382 pending_callbacks_.pop_front(); 381 pending_callbacks_.pop_front();
383 DCHECK(pending_callbacks_.empty()); 382 DCHECK(pending_callbacks_.empty());
384 int64_t delta = (error != base::PLATFORM_FILE_OK) ? 0 : 383 int64_t delta = (error != base::PLATFORM_FILE_OK) ? 0 :
385 new_file_size - cached_file_size_; 384 new_file_size - cached_file_size_;
386 385
387 delegate_->DidUpdateFile(file_url_, delta); 386 delegate_->DidUpdateFile(file_url_, delta);
388 inflight_operations_ = 0; 387 inflight_operations_ = 0;
389 } 388 }
390 389
391 } // namespace content 390 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/pepper/ppb_widget_impl.cc ('k') | content/renderer/pepper/renderer_ppapi_host_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698