diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-27 16:07:34 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-27 16:07:34 +0000 |
commit | 281bc5ba1878f3c4b9c638e89d73aa5549b20d76 (patch) | |
tree | 3e5b7cf0f17de7ae77903b6c58dd973af0806a09 /webkit/quota | |
parent | 1096fca67d8f9133c61ccb20e24aea1bee3adb4a (diff) | |
download | chromium_src-281bc5ba1878f3c4b9c638e89d73aa5549b20d76.zip chromium_src-281bc5ba1878f3c4b9c638e89d73aa5549b20d76.tar.gz chromium_src-281bc5ba1878f3c4b9c638e89d73aa5549b20d76.tar.bz2 |
Remove unused fields found by clang's new Wunused-private-fields.
Test file edition.
BUG=none
TEST=none
TBR=remaining owners
Review URL: https://chromiumcodereview.appspot.com/10680013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@144464 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/quota')
-rw-r--r-- | webkit/quota/quota_temporary_storage_evictor_unittest.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/webkit/quota/quota_temporary_storage_evictor_unittest.cc b/webkit/quota/quota_temporary_storage_evictor_unittest.cc index 1d6bf92..756c627 100644 --- a/webkit/quota/quota_temporary_storage_evictor_unittest.cc +++ b/webkit/quota/quota_temporary_storage_evictor_unittest.cc @@ -30,8 +30,7 @@ class MockQuotaEvictionHandler : public quota::QuotaEvictionHandler { unlimited_usage_(0), available_space_(0), error_on_evict_origin_data_(false), - error_on_get_usage_and_quota_(false), - test_(test) {} + error_on_get_usage_and_quota_(false) {} virtual void EvictOriginData( const GURL& origin, @@ -135,7 +134,6 @@ class MockQuotaEvictionHandler : public quota::QuotaEvictionHandler { bool error_on_evict_origin_data_; bool error_on_get_usage_and_quota_; - QuotaTemporaryStorageEvictorTest *test_; base::Closure task_for_get_usage_and_quota_; }; |