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

1 2 3 4 5 6

  /external/chromium_org/content/browser/indexed_db/
indexed_db_context_impl.h 60 virtual int64 GetOriginDiskUsage(const GURL& origin_url) OVERRIDE;
61 virtual void DeleteForOrigin(const GURL& origin_url) OVERRIDE;
68 void ConnectionOpened(const GURL& origin_url, IndexedDBConnection* db);
69 void ConnectionClosed(const GURL& origin_url, IndexedDBConnection* db);
70 void TransactionComplete(const GURL& origin_url);
71 void DatabaseDeleted(const GURL& origin_url);
72 bool WouldBeOverQuota(const GURL& origin_url, int64 additional_bytes);
73 bool IsOverQuota(const GURL& origin_url);
78 base::Time GetOriginLastModified(const GURL& origin_url);
91 void ForceClose(const GURL origin_url, ForceCloseReason reason)
    [all...]
indexed_db_factory.cc 64 void IndexedDBFactory::ReleaseBackingStore(const GURL& origin_url,
68 backing_stores_with_active_blobs_.find(origin_url);
76 if (!HasLastBackingStoreReference(origin_url))
83 CloseBackingStore(origin_url);
89 DCHECK(!backing_store_map_[origin_url]->close_timer()->IsRunning());
90 backing_store_map_[origin_url]->close_timer()->Start(
93 base::Bind(&IndexedDBFactory::MaybeCloseBackingStore, this, origin_url));
96 void IndexedDBFactory::MaybeCloseBackingStore(const GURL& origin_url) {
99 if (HasLastBackingStoreReference(origin_url))
100 CloseBackingStore(origin_url);
    [all...]
indexed_db_context_impl.cc 150 const GURL& origin_url = *iter; local
152 base::FilePath idb_directory = GetFilePath(origin_url);
153 size_t connection_count = GetConnectionCount(origin_url);
154 result.push_back(IndexedDBInfo(origin_url,
155 GetOriginDiskUsage(origin_url),
156 GetOriginLastModified(origin_url),
177 const GURL& origin_url = *iter; local
180 info->SetString("url", origin_url.spec());
181 info->SetString("size", ui::FormatBytes(GetOriginDiskUsage(origin_url)));
183 GetOriginLastModified(origin_url).ToJsTime())
    [all...]
indexed_db_factory.h 45 const GURL& origin_url,
51 const GURL& origin_url,
57 const GURL& origin_url,
60 void HandleBackingStoreFailure(const GURL& origin_url);
61 void HandleBackingStoreCorruption(const GURL& origin_url,
65 const GURL& origin_url) const;
67 void ForceClose(const GURL& origin_url);
73 virtual void ReportOutstandingBlobs(const GURL& origin_url,
79 size_t GetConnectionCount(const GURL& origin_url) const;
87 const GURL& origin_url,
    [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...]
indexed_db_active_blob_registry_unittest.cc 22 virtual void ReportOutstandingBlobs(const GURL& origin_url,
25 if (origins_.count(origin_url)) {
28 origins_.insert(origin_url);
31 if (!origins_.count(origin_url)) {
34 origins_.erase(origin_url);
141 EXPECT_TRUE(factory()->CheckSingleOriginInUse(backing_store()->origin_url()));
163 EXPECT_TRUE(factory()->CheckSingleOriginInUse(backing_store()->origin_url()));
169 EXPECT_TRUE(factory()->CheckSingleOriginInUse(backing_store()->origin_url()));
204 EXPECT_TRUE(factory()->CheckSingleOriginInUse(backing_store()->origin_url()));
212 EXPECT_TRUE(factory()->CheckSingleOriginInUse(backing_store()->origin_url()));
    [all...]
  /external/chromium_org/chrome/browser/android/banners/
app_banner_settings_helper.h 23 const GURL& origin_url,
28 const GURL& origin_url,
app_banner_settings_helper.cc 29 const GURL& origin_url,
34 if (profile->IsOffTheRecord() || web_contents->GetURL() != origin_url ||
44 settings->GetWebsiteSetting(origin_url,
45 origin_url,
65 ContentSettingsPattern pattern(ContentSettingsPattern::FromURL(origin_url));
80 const GURL& origin_url,
88 ContentSettingsPattern pattern(ContentSettingsPattern::FromURL(origin_url));
93 settings->GetWebsiteSetting(origin_url,
94 origin_url,
  /external/chromium_org/content/public/browser/
indexed_db_context.h 32 virtual int64 GetOriginDiskUsage(const GURL& origin_url) = 0;
35 virtual void DeleteForOrigin(const GURL& origin_url) = 0;
speech_recognition_session_config.h 30 std::string origin_url; member in struct:content::SpeechRecognitionSessionConfig
  /external/chromium_org/chrome/browser/notifications/
notification.cc 11 Notification::Notification(const GURL& origin_url,
25 message_center::NotifierId(origin_url),
28 origin_url_(origin_url),
39 const GURL& origin_url,
58 origin_url_(origin_url),
65 Notification::Notification(const GURL& origin_url,
79 message_center::NotifierId(origin_url),
82 origin_url_(origin_url),
88 origin_url_(notification.origin_url()),
101 origin_url_ = notification.origin_url();
    [all...]
notification.h 29 Notification(const GURL& origin_url,
40 Notification(const GURL& origin_url,
51 const GURL& origin_url,
70 const GURL& origin_url() const { return origin_url_; } function in class:Notification
  /external/chromium_org/content/public/test/
mock_storage_client.h 46 const GURL& origin_url, StorageType type, int64 size);
48 const GURL& origin_url, StorageType type, int64 delta);
51 void AddOriginToErrorSet(const GURL& origin_url, StorageType type);
58 virtual void GetOriginUsage(const GURL& origin_url,
71 void RunGetOriginUsage(const GURL& origin_url,
79 void RunDeleteOriginData(const GURL& origin_url,
mock_storage_client.cc 45 const GURL& origin_url, StorageType type, int64 size) {
46 DCHECK(origin_data_.find(make_pair(origin_url, type)) == origin_data_.end());
48 origin_data_[make_pair(origin_url, type)] = size;
50 id(), origin_url, type, size, IncrementMockTime()); local
54 const GURL& origin_url, StorageType type, int64 delta) {
55 OriginDataMap::iterator find = origin_data_.find(make_pair(origin_url, type));
62 id(), origin_url, type, delta, IncrementMockTime()); local
75 const GURL& origin_url, StorageType type) {
76 error_origins_.insert(make_pair(origin_url, type));
92 void MockStorageClient::GetOriginUsage(const GURL& origin_url,
182 NotifyStorageModified(id(), origin_url, type, -delta); local
    [all...]
  /external/chromium_org/webkit/browser/appcache/
appcache_histograms.cc 11 static std::string OriginToCustomHistogramSuffix(const GURL& origin_url) {
12 if (origin_url.host() == "docs.google.com")
33 const GURL& origin_url) {
38 const std::string suffix = OriginToCustomHistogramSuffix(origin_url);
57 bool success, bool is_main_resource, const GURL& origin_url) {
66 const std::string suffix = OriginToCustomHistogramSuffix(origin_url);
75 const GURL& origin_url,
79 const std::string suffix = OriginToCustomHistogramSuffix(origin_url);
  /external/chromium_org/chrome/browser/renderer_host/
chrome_render_message_filter.cc 169 const GURL& origin_url,
175 cookie_settings_->IsSettingCookieAllowed(origin_url, top_origin_url);
179 render_process_id_, render_frame_id, origin_url, name,
184 const GURL& origin_url,
189 cookie_settings_->IsSettingCookieAllowed(origin_url, top_origin_url);
194 render_process_id_, render_frame_id, origin_url, local,
200 const GURL& origin_url,
204 cookie_settings_->IsSettingCookieAllowed(origin_url, top_origin_url);
217 origin_url,
233 origin_url,
    [all...]
chrome_render_message_filter.h 65 const GURL& origin_url,
71 const GURL& origin_url,
76 const GURL& origin_url,
81 const GURL& origin_url,
84 const GURL& origin_url,
  /external/chromium_org/content/public/common/
storage_quota_params.h 27 GURL origin_url; member in struct:content::StorageQuotaParams
  /external/chromium_org/webkit/common/fileapi/
file_system_util.h 70 // |origin_url| is set to 'http://foo.com', |type| is set to
74 GURL* origin_url,
79 // |origin_url| and |type|. The returned URI can be used as a root path
87 WEBKIT_STORAGE_COMMON_EXPORT GURL GetFileSystemRootURI(const GURL& origin_url,
91 // |origin_url| and |type|.
102 GetFileSystemName(const GURL& origin_url, FileSystemType type);
147 const GURL& origin_url,
162 // Returns the root URI for an isolated filesystem for origin |origin_url|
166 const GURL& origin_url,
170 // Returns the root URI for an external filesystem for origin |origin_url|
    [all...]
  /external/chromium_org/android_webview/browser/
aw_javascript_dialog_manager.cc 19 const GURL& origin_url,
34 origin_url,
  /external/chromium_org/content/renderer/shared_worker/
embedded_shared_worker_permission_client_proxy.cc 16 const GURL& origin_url,
20 : origin_url_(origin_url),
embedded_shared_worker_permission_client_proxy.h 23 const GURL& origin_url,
  /external/chromium_org/content/worker/
shared_worker_permission_client_proxy.cc 15 const GURL& origin_url,
19 : origin_url_(origin_url),
shared_worker_permission_client_proxy.h 23 const GURL& origin_url,

Completed in 597 milliseconds

1 2 3 4 5 6