HomeSort by relevance Sort by last modified time
    Searched full:origin_url (Results 1 - 25 of 183) sorted by null

1 2 3 4 5 6 7 8

  /external/chromium_org/content/browser/indexed_db/
indexed_db_context_impl.h 60 virtual int64 GetOriginDiskUsage(const GURL& origin_url) OVERRIDE;
61 virtual base::Time GetOriginLastModified(const GURL& origin_url) OVERRIDE;
62 virtual void DeleteForOrigin(const GURL& origin_url) OVERRIDE;
69 void ConnectionOpened(const GURL& origin_url, IndexedDBConnection* db);
70 void ConnectionClosed(const GURL& origin_url, IndexedDBConnection* db);
71 void TransactionComplete(const GURL& origin_url);
72 bool WouldBeOverQuota(const GURL& origin_url, int64 additional_bytes);
73 bool IsOverQuota(const GURL& origin_url);
78 void ForceClose(const GURL& origin_url);
79 base::FilePath GetFilePath(const GURL& origin_url);
    [all...]
indexed_db_context_impl.cc 144 const GURL& origin_url = *iter; local
146 base::FilePath idb_directory = GetFilePath(origin_url);
147 size_t connection_count = GetConnectionCount(origin_url);
148 result.push_back(IndexedDBInfo(origin_url,
149 GetOriginDiskUsage(origin_url),
150 GetOriginLastModified(origin_url),
171 const GURL& origin_url = *iter; local
174 info->SetString("url", origin_url.spec());
175 info->SetString("size", ui::FormatBytes(GetOriginDiskUsage(origin_url)));
177 GetOriginLastModified(origin_url).ToJsTime())
    [all...]
indexed_db_internals_ui.h 45 const GURL& origin_url);
47 const GURL& origin_url,
52 const GURL& origin_url,
62 const GURL& origin_url);
64 const GURL& origin_url,
67 const GURL& origin_url,
71 GURL* origin_url,
indexed_db_internals_ui.cc 122 GURL* origin_url,
133 *origin_url = GURL(url_string);
135 return GetOriginContext(*partition_path, *origin_url, context);
140 const GURL& origin_url,
161 GURL origin_url; local
163 if (!GetOriginData(args, &partition_path, &origin_url, &context))
173 origin_url));
180 GURL origin_url; local
182 if (!GetOriginData(args, &partition_path, &origin_url, &context))
191 origin_url));
    [all...]
  /external/chromium/chrome/browser/notifications/
notification.cc 7 Notification::Notification(const GURL& origin_url,
12 : origin_url_(origin_url),
20 : origin_url_(notification.origin_url()),
30 origin_url_ = notification.origin_url();
  /external/chromium_org/chrome/browser/notifications/
notification.cc 12 Notification::Notification(const GURL& origin_url,
23 origin_url.spec(),
26 origin_url_(origin_url),
32 Notification::Notification(const GURL& origin_url,
46 origin_url.spec(),
49 origin_url_(origin_url),
61 const GURL& origin_url,
76 origin_url.spec(),
79 origin_url_(origin_url),
95 Notification::Notification(const GURL& origin_url,
    [all...]
  /external/chromium_org/webkit/browser/quota/
mock_storage_client.h 40 const GURL& origin_url, StorageType type, int64 size);
42 const GURL& origin_url, StorageType type, int64 delta);
45 void AddOriginToErrorSet(const GURL& origin_url, StorageType type);
52 virtual void GetOriginUsage(const GURL& origin_url,
64 void RunGetOriginUsage(const GURL& origin_url,
72 void RunDeleteOriginData(const GURL& origin_url,
mock_storage_client.cc 42 const GURL& origin_url, StorageType type, int64 size) {
43 DCHECK(origin_data_.find(make_pair(origin_url, type)) == origin_data_.end());
45 origin_data_[make_pair(origin_url, type)] = size;
47 id(), origin_url, type, size, IncrementMockTime()); local
51 const GURL& origin_url, StorageType type, int64 delta) {
52 OriginDataMap::iterator find = origin_data_.find(make_pair(origin_url, type));
59 id(), origin_url, type, delta, IncrementMockTime()); local
72 const GURL& origin_url, StorageType type) {
73 error_origins_.insert(make_pair(origin_url, type));
89 void MockStorageClient::GetOriginUsage(const GURL& origin_url,
175 NotifyStorageModified(id(), origin_url, type, -delta); local
    [all...]
  /external/chromium_org/content/browser/resources/indexed_db/
indexeddb_internals.js 32 function withNode(selector, partition_path, origin_url, callback) {
37 origin_url == link.idb_origin_url) {
44 function onOriginDownloadReady(partition_path, origin_url, connection_count) {
45 withNode('a.download', partition_path, origin_url, function(link) {
48 withNode('.connection-count', partition_path, origin_url, function(span) {
53 function onForcedClose(partition_path, origin_url, connection_count) {
54 withNode('a.force-close', partition_path, origin_url, function(link) {
57 withNode('.connection-count', partition_path, origin_url, function(span) {
  /external/chromium_org/content/common/
quota_messages.h 36 GURL /* origin_url */,
42 GURL /* origin_url */,
  /external/chromium_org/webkit/browser/fileapi/
sandbox_context.cc 77 const GURL& origin_url,
83 file_util->GetDirectoryForOriginAndType(origin_url, type, create, error_ptr);
202 const GURL& origin_url, fileapi::FileSystemType type, bool create) {
205 origin_url, type, create, &error);
212 const GURL& origin_url,
217 if (!IsAllowedScheme(origin_url)) {
222 std::string name = GetFileSystemName(origin_url, type);
228 sync_file_util(), origin_url, type, mode,
239 const GURL& origin_url,
242 file_system_context, origin_url, type)
    [all...]
sandbox_file_system_backend_unittest.cc 36 const char* origin_url; member in struct:fileapi::__anon17200::RootPathTest
59 const char* origin_url; member in struct:fileapi::__anon17200::RootPathFileURITest
76 const GURL& origin_url,
117 bool GetRootPath(const GURL& origin_url,
123 origin_url, type, mode,
130 origin_url, type, false /* create */);
213 EXPECT_TRUE(GetRootPath(GURL(kRootPathTestCases[i].origin_url),
233 EXPECT_TRUE(GetRootPath(GURL(kRootPathTestCases[i].origin_url),
248 GURL origin_url("http://foo.com:1/");
251 EXPECT_TRUE(GetRootPath(origin_url, kFileSystemTypeTemporary
    [all...]
sandbox_context.h 85 // specified by |origin_url| and |type|.
91 const GURL& origin_url,
97 const GURL& origin_url,
107 const GURL& origin_url,
118 const GURL& origin_url,
121 const GURL& origin_url,
124 const GURL& origin_url,
151 const GURL& origin_url,
157 const GURL& origin_url,
  /external/chromium_org/webkit/browser/appcache/
appcache_working_set.h 46 const GroupMap* GetGroupsInOrigin(const GURL& origin_url) {
47 return GetMutableGroupsInOrigin(origin_url);
62 GroupMap* GetMutableGroupsInOrigin(const GURL& origin_url) {
63 GroupsByOriginMap::iterator it = groups_by_origin_.find(origin_url);
appcache_working_set.cc 58 GURL origin_url = url.GetOrigin(); local
59 GroupMap* groups_in_origin = GetMutableGroupsInOrigin(origin_url);
63 groups_by_origin_.erase(origin_url);
  /external/chromium_org/chrome/browser/sync_file_system/local/
sync_file_system_backend.cc 53 const GURL& origin_url,
60 origin_url, type, mode, callback,
61 GetSyncableFileSystemRootURI(origin_url));
148 const GURL& origin_url,
153 context, proxy, origin_url, type);
175 const GURL& origin_url,
180 context, origin_url, type);
184 const GURL& origin_url,
188 sandbox_context_->InvalidateUsageCache(origin_url, type);
192 const GURL& origin_url,
    [all...]
  /external/chromium_org/content/public/browser/
indexed_db_context.h 33 virtual int64 GetOriginDiskUsage(const GURL& origin_url) = 0;
34 virtual base::Time GetOriginLastModified(const GURL& origin_url) = 0;
37 virtual void DeleteForOrigin(const GURL& origin_url) = 0;
  /external/chromium_org/android_webview/browser/
aw_quota_permission_context.h 18 const GURL& origin_url,
aw_contents_client_bridge_base.h 49 const GURL& origin_url,
55 const GURL& origin_url,
aw_javascript_dialog_manager.cc 19 const GURL& origin_url,
29 origin_url,
  /external/chromium_org/chrome/browser/
chrome_quota_permission_context.cc 39 const GURL& origin_url,
48 const GURL& origin_url,
74 const GURL& origin_url,
79 new RequestQuotaInfoBarDelegate(infobar_service, context, origin_url,
87 const GURL& origin_url,
93 origin_url_(origin_url),
146 const GURL& origin_url,
163 origin_url, type, requested_quota, render_process_id,
188 infobar_service, this, origin_url, requested_quota,
chrome_quota_permission_context.h 17 const GURL& origin_url,
  /external/chromium_org/content/shell/
shell_quota_permission_context.cc 14 const GURL& origin_url,
shell_quota_permission_context.h 19 const GURL& origin_url,
  /external/chromium_org/webkit/common/fileapi/
file_system_util.h 68 // |origin_url| and |type|. The returned URI can be used as a root path
76 WEBKIT_STORAGE_COMMON_EXPORT GURL GetFileSystemRootURI(const GURL& origin_url,
80 // |origin_url| and |type|.
91 GetFileSystemName(const GURL& origin_url, FileSystemType type);
136 const GURL& origin_url,
147 // Returns the root URI for an isolated filesystem for origin |origin_url|
151 const GURL& origin_url,
155 // Returns the root URI for an external filesystem for origin |origin_url|
158 const GURL& origin_url,

Completed in 292 milliseconds

1 2 3 4 5 6 7 8