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

Side by Side Diff: webkit/browser/quota/usage_tracker.cc

Issue 492873002: Collapse fileapi, webkit_blob, webkit_database, quota, and webkit_common namespaces into single sto… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix chromeos build Created 6 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
« no previous file with comments | « webkit/browser/quota/usage_tracker.h ('k') | webkit/common/blob/blob_data.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 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/browser/quota/usage_tracker.h" 5 #include "webkit/browser/quota/usage_tracker.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <deque> 8 #include <deque>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/bind.h" 13 #include "base/bind.h"
14 #include "base/message_loop/message_loop_proxy.h" 14 #include "base/message_loop/message_loop_proxy.h"
15 #include "base/stl_util.h" 15 #include "base/stl_util.h"
16 #include "net/base/net_util.h" 16 #include "net/base/net_util.h"
17 #include "webkit/browser/quota/storage_monitor.h" 17 #include "webkit/browser/quota/storage_monitor.h"
18 #include "webkit/browser/quota/storage_observer.h" 18 #include "webkit/browser/quota/storage_observer.h"
19 19
20 namespace quota { 20 namespace storage {
21 21
22 namespace { 22 namespace {
23 23
24 typedef ClientUsageTracker::OriginUsageAccumulator OriginUsageAccumulator; 24 typedef ClientUsageTracker::OriginUsageAccumulator OriginUsageAccumulator;
25 typedef ClientUsageTracker::OriginSetByHost OriginSetByHost; 25 typedef ClientUsageTracker::OriginSetByHost OriginSetByHost;
26 26
27 void DidGetOriginUsage(const OriginUsageAccumulator& accumulator, 27 void DidGetOriginUsage(const OriginUsageAccumulator& accumulator,
28 const GURL& origin, 28 const GURL& origin,
29 int64 usage) { 29 int64 usage) {
30 accumulator.Run(origin, usage); 30 accumulator.Run(origin, usage);
(...skipping 653 matching lines...) Expand 10 before | Expand all | Expand 10 after
684 non_cached_unlimited_origins_by_host_.clear(); 684 non_cached_unlimited_origins_by_host_.clear();
685 } 685 }
686 686
687 bool ClientUsageTracker::IsStorageUnlimited(const GURL& origin) const { 687 bool ClientUsageTracker::IsStorageUnlimited(const GURL& origin) const {
688 if (type_ == kStorageTypeSyncable) 688 if (type_ == kStorageTypeSyncable)
689 return false; 689 return false;
690 return special_storage_policy_.get() && 690 return special_storage_policy_.get() &&
691 special_storage_policy_->IsStorageUnlimited(origin); 691 special_storage_policy_->IsStorageUnlimited(origin);
692 } 692 }
693 693
694 } // namespace quota 694 } // namespace storage
OLDNEW
« no previous file with comments | « webkit/browser/quota/usage_tracker.h ('k') | webkit/common/blob/blob_data.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698