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

Side by Side Diff: content/public/common/resource_usage_reporter.mojom

Issue 972083002: Report utility process JS memory in task manager. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@v8-pac-oop
Patch Set: Redesign. Created 5 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
OLDNEW
(Empty)
1 // Copyright 2015 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 module content;
6
7 struct ResourceUsageData {
ncarter (slow) 2015/05/07 20:12:44 Gosh mojo is nice. Feels great to be living in the
8 bool reports_v8_stats = false;
9 uint64 v8_memory_allocated = 0;
10 uint64 v8_memory_used = 0;
11
12 // TODO(amistry): Consider using this for the renderer process.
13 };
14
15 interface ResourceUsageReporter {
16 GetUsageData() => (ResourceUsageData data);
17 };
OLDNEW
« content/public/browser/process_resource_usage.h ('K') | « content/public/common/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698