OLD | NEW |
(Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/cache_stats_recorder.h" |
| 6 |
| 7 #include "base/memory/ptr_util.h" |
| 8 #include "components/web_cache/browser/web_cache_manager.h" |
| 9 #include "content/public/browser/browser_thread.h" |
| 10 #include "mojo/public/cpp/bindings/strong_associated_binding.h" |
| 11 |
| 12 CacheStatsRecorder::CacheStatsRecorder(int render_process_id) |
| 13 : render_process_id_(render_process_id) {} |
| 14 |
| 15 CacheStatsRecorder::~CacheStatsRecorder() = default; |
| 16 |
| 17 // static |
| 18 void CacheStatsRecorder::Create( |
| 19 int render_process_id, |
| 20 chrome::mojom::CacheStatsRecorderAssociatedRequest request) { |
| 21 mojo::MakeStrongAssociatedBinding( |
| 22 base::MakeUnique<CacheStatsRecorder>(render_process_id), |
| 23 std::move(request)); |
| 24 } |
| 25 |
| 26 void CacheStatsRecorder::RecordCacheStats(uint64_t capacity, uint64_t size) { |
| 27 DCHECK_CURRENTLY_ON(content::BrowserThread::UI); |
| 28 web_cache::WebCacheManager::GetInstance()->ObserveStats(render_process_id_, |
| 29 capacity, size); |
| 30 } |
OLD | NEW |