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

Side by Side Diff: trunk/src/webkit/fileapi/sandbox_quota_observer.cc

Issue 14985007: Revert 198844 "Move sequenced_task_runner to base/task" (Closed) Base URL: svn://svn.chromium.org/chrome/
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/sandbox_quota_observer.h" 5 #include "webkit/fileapi/sandbox_quota_observer.h"
6 6
7 #include "base/task/sequenced_task_runner.h" 7 #include "base/sequenced_task_runner.h"
8 #include "webkit/fileapi/file_system_url.h" 8 #include "webkit/fileapi/file_system_url.h"
9 #include "webkit/fileapi/file_system_usage_cache.h" 9 #include "webkit/fileapi/file_system_usage_cache.h"
10 #include "webkit/fileapi/file_system_util.h" 10 #include "webkit/fileapi/file_system_util.h"
11 #include "webkit/fileapi/sandbox_mount_point_provider.h" 11 #include "webkit/fileapi/sandbox_mount_point_provider.h"
12 #include "webkit/quota/quota_client.h" 12 #include "webkit/quota/quota_client.h"
13 #include "webkit/quota/quota_manager.h" 13 #include "webkit/quota/quota_manager.h"
14 14
15 namespace fileapi { 15 namespace fileapi {
16 16
17 SandboxQuotaObserver::SandboxQuotaObserver( 17 SandboxQuotaObserver::SandboxQuotaObserver(
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 131
132 void SandboxQuotaObserver::UpdateUsageCacheFile( 132 void SandboxQuotaObserver::UpdateUsageCacheFile(
133 const base::FilePath& usage_file_path, 133 const base::FilePath& usage_file_path,
134 int64 delta) { 134 int64 delta) {
135 DCHECK(!usage_file_path.empty()); 135 DCHECK(!usage_file_path.empty());
136 if (!usage_file_path.empty() && delta != 0) 136 if (!usage_file_path.empty() && delta != 0)
137 file_system_usage_cache_->AtomicUpdateUsageByDelta(usage_file_path, delta); 137 file_system_usage_cache_->AtomicUpdateUsageByDelta(usage_file_path, delta);
138 } 138 }
139 139
140 } // namespace fileapi 140 } // namespace fileapi
OLDNEW
« no previous file with comments | « trunk/src/webkit/fileapi/sandbox_file_stream_writer.cc ('k') | trunk/src/webkit/fileapi/syncable/local_file_change_tracker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698