| OLD | NEW |
| 1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_BROWSING_DATA_CACHE_COUNTER_H_ | 5 #ifndef CHROME_BROWSER_BROWSING_DATA_CACHE_COUNTER_H_ |
| 6 #define CHROME_BROWSER_BROWSING_DATA_CACHE_COUNTER_H_ | 6 #define CHROME_BROWSER_BROWSING_DATA_CACHE_COUNTER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 bool is_upper_limit_; | 33 bool is_upper_limit_; |
| 34 | 34 |
| 35 DISALLOW_COPY_AND_ASSIGN(CacheResult); | 35 DISALLOW_COPY_AND_ASSIGN(CacheResult); |
| 36 }; | 36 }; |
| 37 | 37 |
| 38 explicit CacheCounter(Profile* profile); | 38 explicit CacheCounter(Profile* profile); |
| 39 ~CacheCounter() override; | 39 ~CacheCounter() override; |
| 40 | 40 |
| 41 const char* GetPrefName() const override; | 41 const char* GetPrefName() const override; |
| 42 | 42 |
| 43 // Whether this counter awaits the calculation result callback. | |
| 44 // Used only for testing. | |
| 45 bool Pending(); | |
| 46 | |
| 47 private: | 43 private: |
| 48 void Count() override; | 44 void Count() override; |
| 49 void OnCacheSizeCalculated(bool is_upper_limit, int64_t bytes); | 45 void OnCacheSizeCalculated(bool is_upper_limit, int64_t bytes); |
| 50 void FetchEstimate( | 46 void FetchEstimate( |
| 51 base::WeakPtr<browsing_data::ConditionalCacheCountingHelper>); | 47 base::WeakPtr<browsing_data::ConditionalCacheCountingHelper>); |
| 52 | 48 |
| 53 Profile* profile_; | 49 Profile* profile_; |
| 54 bool pending_; | 50 bool pending_; |
| 55 | 51 |
| 56 base::WeakPtrFactory<CacheCounter> weak_ptr_factory_; | 52 base::WeakPtrFactory<CacheCounter> weak_ptr_factory_; |
| 57 | 53 |
| 58 }; | 54 }; |
| 59 | 55 |
| 60 #endif // CHROME_BROWSER_BROWSING_DATA_CACHE_COUNTER_H_ | 56 #endif // CHROME_BROWSER_BROWSING_DATA_CACHE_COUNTER_H_ |
| OLD | NEW |