diff options
author | michaeln@chromium.org <michaeln@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-05 23:40:02 +0000 |
---|---|---|
committer | michaeln@chromium.org <michaeln@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-05 23:40:02 +0000 |
commit | d68a4fc6f448c6ebf407e2817320e7736c4735ee (patch) | |
tree | d76e2c91aa67af5a880ec81eddcbf2d12887e865 /chrome/browser/views | |
parent | 63eb6c0bebc31046bbd954ef21dee86dca9d7fe3 (diff) | |
download | chromium_src-d68a4fc6f448c6ebf407e2817320e7736c4735ee.zip chromium_src-d68a4fc6f448c6ebf407e2817320e7736c4735ee.tar.gz chromium_src-d68a4fc6f448c6ebf407e2817320e7736c4735ee.tar.bz2 |
Hook up the content settings UI to the appcache.
* Populate the tree view with appcaches
* Delete selected appcaches from the tree view
* Delete the date range indicated in the browsing data remover
TEST=manual
BUG=34634
Review URL: http://codereview.chromium.org/660423
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40796 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views')
-rwxr-xr-x | chrome/browser/views/appcache_info_view.cc | 3 | ||||
-rwxr-xr-x | chrome/browser/views/appcache_info_view.h | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/chrome/browser/views/appcache_info_view.cc b/chrome/browser/views/appcache_info_view.cc index fd23e7f..4de638c 100755 --- a/chrome/browser/views/appcache_info_view.cc +++ b/chrome/browser/views/appcache_info_view.cc @@ -29,8 +29,7 @@ AppCacheInfoView::AppCacheInfoView() AppCacheInfoView::~AppCacheInfoView() { } -void AppCacheInfoView::SetAppCacheInfo( - const BrowsingDataAppCacheHelper::AppCacheInfo* info) { +void AppCacheInfoView::SetAppCacheInfo(const appcache::AppCacheInfo* info) { DCHECK(info); manifest_url_field_->SetText(UTF8ToWide(info->manifest_url.spec())); size_field_->SetText( diff --git a/chrome/browser/views/appcache_info_view.h b/chrome/browser/views/appcache_info_view.h index ad209d0..25db5dd 100755 --- a/chrome/browser/views/appcache_info_view.h +++ b/chrome/browser/views/appcache_info_view.h @@ -26,7 +26,7 @@ class AppCacheInfoView : public views::View { AppCacheInfoView(); virtual ~AppCacheInfoView(); - void SetAppCacheInfo(const BrowsingDataAppCacheHelper::AppCacheInfo* info); + void SetAppCacheInfo(const appcache::AppCacheInfo* info); void ClearAppCacheDisplay(); void EnableAppCacheDisplay(bool enabled); |