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

Side by Side Diff: webkit/appcache/appcache_storage.cc

Issue 3083014: AppCache: Provide a way to override the default quota for an origin. The inte... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 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/appcache/appcache_storage.h ('k') | webkit/appcache/appcache_storage_impl.cc » ('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 (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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/appcache/appcache_storage.h" 5 #include "webkit/appcache/appcache_storage.h"
6 6
7 #include "base/stl_util-inl.h" 7 #include "base/stl_util-inl.h"
8 #include "webkit/appcache/appcache_response.h" 8 #include "webkit/appcache/appcache_response.h"
9 9
10 namespace appcache { 10 namespace appcache {
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 return; 65 return;
66 } 66 }
67 ResponseInfoLoadTask* info_load = 67 ResponseInfoLoadTask* info_load =
68 GetOrCreateResponseInfoLoadTask(manifest_url, id); 68 GetOrCreateResponseInfoLoadTask(manifest_url, id);
69 DCHECK(manifest_url == info_load->manifest_url()); 69 DCHECK(manifest_url == info_load->manifest_url());
70 DCHECK(id == info_load->response_id()); 70 DCHECK(id == info_load->response_id());
71 info_load->AddDelegate(GetOrCreateDelegateReference(delegate)); 71 info_load->AddDelegate(GetOrCreateDelegateReference(delegate));
72 info_load->StartIfNeeded(); 72 info_load->StartIfNeeded();
73 } 73 }
74 74
75 void AppCacheStorage::SetOriginQuotaInMemory(const GURL& origin, int64 quota) {
76 DCHECK(quota >= 0);
77 DCHECK(origin == origin.GetOrigin());
78 in_memory_quotas_[origin] = quota;
79 }
80
81 void AppCacheStorage::ResetOriginQuotaInMemory(const GURL& origin) {
82 DCHECK(origin == origin.GetOrigin());
83 in_memory_quotas_.erase(origin);
84 }
85
86 int64 AppCacheStorage::GetOriginQuotaInMemory(const GURL& origin) {
87 DCHECK(origin == origin.GetOrigin());
88 QuotaMap::const_iterator found = in_memory_quotas_.find(origin);
89 if (found == in_memory_quotas_.end())
90 return -1;
91 return found->second;
92 }
93
75 } // namespace appcache 94 } // namespace appcache
76 95
OLDNEW
« no previous file with comments | « webkit/appcache/appcache_storage.h ('k') | webkit/appcache/appcache_storage_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698