HomeSort by relevance Sort by last modified time
    Searched full:quota (Results 76 - 100 of 691) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/resources/quota_internals/
main.html 8 <title>Quota Internals</title>
24 <script src="chrome://quota-internals/message_dispatcher.js"></script>
25 <script src="chrome://quota-internals/event_handler.js"></script>
32 <tab>Usage &amp; Quota</tab>
54 <!-- Usage and Quota -->
55 <h2>Usage and Quota Database Browser</h2>
  /external/chromium_org/content/shell/
shell_message_filter.cc 20 #include "webkit/browser/quota/quota_manager.h"
27 quota::QuotaManager* quota_manager,
89 void ShellMessageFilter::OnSetDatabaseQuota(int quota) {
91 quota * quota::QuotaManager::kPerHostTemporaryPortion,
92 quota::QuotaCallback());
  /external/chromium_org/third_party/WebKit/Source/web/
StorageQuotaChromium.cpp 32 #include "modules/quota/StorageQuota.h"
43 #include "modules/quota/StorageErrorCallback.h"
44 #include "modules/quota/StorageQuotaCallback.h"
45 #include "modules/quota/StorageUsageCallback.h"
46 #include "modules/quota/WebStorageQuotaCallbacksImpl.h"
68 // Requesting quota in Worker is not supported.
  /external/chromium_org/webkit/browser/fileapi/
sandbox_file_stream_writer.h 18 #include "webkit/common/quota/quota_types.h"
42 void set_default_quota(int64 quota) {
43 default_quota_ = quota;
47 // Performs quota calculation and calls local_file_writer_->Write().
60 quota::QuotaStatusCode status,
61 int64 usage, int64 quota);
  /external/chromium_org/webkit/browser/quota/
quota_client.h 15 #include "webkit/common/quota/quota_types.h"
17 namespace quota { namespace
19 // An abstract interface for quota manager clients.
21 // register it to the quota manager.
43 // Called when the quota manager is destroyed.
77 } // namespace quota
mock_special_storage_policy.h 12 #include "webkit/browser/quota/special_storage_policy.h"
14 namespace quota { namespace
16 class MockSpecialStoragePolicy : public quota::SpecialStoragePolicy {
99 } // namespace quota
  /external/chromium_org/chrome/browser/sync_file_system/local/
syncable_file_system_unittest.cc 17 #include "webkit/browser/quota/quota_manager.h"
19 #include "webkit/common/quota/quota_types.h"
27 using quota::QuotaManager;
28 using quota::QuotaStatusCode;
122 int64 usage, quota; local
123 EXPECT_EQ(quota::kQuotaStatusOk,
124 file_system_.GetUsageAndQuota(&usage, &quota));
126 // Returned quota must be what we overrode. Usage must be greater than 0
128 EXPECT_EQ(kQuota, quota);
140 EXPECT_EQ(quota::kQuotaStatusOk
    [all...]
  /external/chromium_org/content/browser/indexed_db/
indexed_db_quota_client.cc 15 using quota::QuotaClient;
21 quota::QuotaStatusCode DeleteOriginDataOnIndexedDBThread(
25 return quota::kQuotaStatusOk;
75 quota::StorageType type,
81 if (type != quota::kStorageTypeTemporary) {
101 quota::StorageType type,
107 if (type != quota::kStorageTypeTemporary) {
128 quota::StorageType type,
135 if (type != quota::kStorageTypeTemporary) {
157 quota::StorageType type
    [all...]
  /external/chromium_org/webkit/browser/database/
database_quota_client.cc 21 using quota::QuotaClient;
83 quota::QuotaStatusCode status;
85 status = quota::kQuotaStatusOk;
87 status = quota::kQuotaStatusUnknown;
124 quota::StorageType type,
130 if (type != quota::kStorageTypeTemporary) {
143 quota::StorageType type,
149 if (type != quota::kStorageTypeTemporary) {
166 quota::StorageType type,
173 if (type != quota::kStorageTypeTemporary)
    [all...]
database_quota_client_unittest.cc 23 static const quota::StorageType kTemp = quota::kStorageTypeTemporary;
24 static const quota::StorageType kPerm = quota::kStorageTypePersistent;
137 quota::QuotaClient* client,
139 quota::StorageType type) {
150 quota::QuotaClient* client,
151 quota::StorageType type) {
162 quota::QuotaClient* client,
163 quota::StorageType type
    [all...]
  /external/chromium_org/content/public/browser/
cookie_store_factory.h 15 namespace quota { namespace
27 quota::SpecialStoragePolicy* storage_policy,
quota_permission_context.h 10 #include "webkit/common/quota/quota_types.h"
30 quota::StorageType type,
  /external/chromium_org/webkit/browser/appcache/
appcache_storage.cc 12 #include "webkit/browser/quota/quota_client.h"
13 #include "webkit/browser/quota/quota_manager.h"
108 quota::QuotaClient::kAppcache,
109 origin, quota::kStorageTypeTemporary,
119 quota::QuotaClient::kAppcache,
120 iter->first, quota::kStorageTypeTemporary,
131 quota::QuotaClient::kAppcache,
132 origin, quota::kStorageTypeTemporary);