Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(187)

Side by Side Diff: chrome/browser/cache_stats_recorder.cc

Issue 2643183002: Convert ChromeViewHostMsg_UpdatedCacheStats to use mojo. (Closed)
Patch Set: Convert ChromeViewHostMsg_UpdatedCacheStats to use mojo. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/browser/cache_stats_recorder.h ('k') | chrome/browser/chrome_content_browser_client.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « chrome/browser/cache_stats_recorder.h ('k') | chrome/browser/chrome_content_browser_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698