OLD | NEW |
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 "extensions/browser/quota_service.h" | 5 #include "extensions/browser/quota_service.h" |
6 | 6 |
7 #include "base/message_loop/message_loop.h" | 7 #include "base/message_loop/message_loop.h" |
8 #include "base/stl_util.h" | 8 #include "base/stl_util.h" |
9 #include "chrome/browser/extensions/extension_function.h" | 9 #include "extensions/browser/extension_function.h" |
10 #include "extensions/common/error_utils.h" | 10 #include "extensions/common/error_utils.h" |
11 | 11 |
12 namespace { | 12 namespace { |
13 | 13 |
14 // If the browser stays open long enough, we reset state once a day. | 14 // If the browser stays open long enough, we reset state once a day. |
15 // Whatever this value is, it should be an order of magnitude longer than | 15 // Whatever this value is, it should be an order of magnitude longer than |
16 // the longest interval in any of the QuotaLimitHeuristics in use. | 16 // the longest interval in any of the QuotaLimitHeuristics in use. |
17 const int kPurgeIntervalInDays = 1; | 17 const int kPurgeIntervalInDays = 1; |
18 | 18 |
19 const char kOverQuotaError[] = "This request exceeds the * quota."; | 19 const char kOverQuotaError[] = "This request exceeds the * quota."; |
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 } | 183 } |
184 | 184 |
185 // We can go negative since we check has_tokens when we get to *next* bucket, | 185 // We can go negative since we check has_tokens when we get to *next* bucket, |
186 // and for the small interval all that matters is whether we used up all the | 186 // and for the small interval all that matters is whether we used up all the |
187 // tokens (which is true if num_tokens_ <= 0). | 187 // tokens (which is true if num_tokens_ <= 0). |
188 bucket->DeductToken(); | 188 bucket->DeductToken(); |
189 return true; | 189 return true; |
190 } | 190 } |
191 | 191 |
192 } // namespace extensions | 192 } // namespace extensions |
OLD | NEW |