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

Unified Diff: content/public/browser/child_process_data.cc

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: Clean up. Created 5 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: content/public/browser/child_process_data.cc
diff --git a/content/public/browser/child_process_data.cc b/content/public/browser/child_process_data.cc
new file mode 100644
index 0000000000000000000000000000000000000000..7556c4ff9e3542da8a00ca2242f2b17af56f0fde
--- /dev/null
+++ b/content/public/browser/child_process_data.cc
@@ -0,0 +1,16 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "content/public/browser/child_process_data.h"
+
+namespace content {
+
+ChildProcessData::ChildProcessData(int process_type)
+ : process_type(process_type), id(0), handle(base::kNullProcessHandle) {
+}
+
+ChildProcessData::~ChildProcessData() {
+}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698