diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-23 05:02:06 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-23 05:02:06 +0000 |
commit | b3ffd3bafc7f136c00b16b06c7c39d446303ceb2 (patch) | |
tree | 89959747a9cdf47f134804efb0da06d4a19da35d /chrome/browser/renderer_host | |
parent | 5aaa076c87d38272ee9e38ed827b8d4ad2777c05 (diff) | |
download | chromium_src-b3ffd3bafc7f136c00b16b06c7c39d446303ceb2.zip chromium_src-b3ffd3bafc7f136c00b16b06c7c39d446303ceb2.tar.gz chromium_src-b3ffd3bafc7f136c00b16b06c7c39d446303ceb2.tar.bz2 |
Small preparation for the cookie confirmation dialog on linux/osx.
BUG=34894,35178
Review URL: http://codereview.chromium.org/650204
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@39696 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/renderer_host')
-rw-r--r-- | chrome/browser/renderer_host/database_permission_request.cc | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/chrome/browser/renderer_host/database_permission_request.cc b/chrome/browser/renderer_host/database_permission_request.cc index 95a47de..5efb567 100644 --- a/chrome/browser/renderer_host/database_permission_request.cc +++ b/chrome/browser/renderer_host/database_permission_request.cc @@ -51,17 +51,11 @@ void DatabasePermissionRequest::RequestPermission() { return; } -#if defined(OS_WIN) self_ref_ = this; // Will call either AllowSiteData or BlockSiteData which will NULL out our // self reference. RunDatabasePrompt(browser->GetSelectedTabContents(), host_content_settings_map_, url_, database_name_, this); -#else - // TODO(jorlow): Enable prompting for other ports. - NOTIMPLEMENTED(); - BlockSiteData(); -#endif } void DatabasePermissionRequest::AllowSiteData(bool session_expire) { |