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

Unified Diff: chrome/browser/chromeos/arc/arc_process.cc

Issue 2023643002: Add ARC app icons to the Task Manager UI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: revert back to the original test code Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/chromeos/arc/arc_process.h ('k') | chrome/browser/chromeos/arc/arc_process_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/arc/arc_process.cc
diff --git a/chrome/browser/chromeos/arc/arc_process.cc b/chrome/browser/chromeos/arc/arc_process.cc
new file mode 100644
index 0000000000000000000000000000000000000000..53f127d10d29c9200f50a95e3123a4472ab1545b
--- /dev/null
+++ b/chrome/browser/chromeos/arc/arc_process.cc
@@ -0,0 +1,23 @@
+// Copyright 2016 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 "chrome/browser/chromeos/arc/arc_process.h"
+
+namespace arc {
+
+ArcProcess::ArcProcess(base::ProcessId nspid,
+ base::ProcessId pid,
+ const std::string& process_name,
+ mojom::ProcessState process_state)
+ : nspid_(nspid),
+ pid_(pid),
+ process_name_(process_name),
+ process_state_(process_state) {}
+
+ArcProcess::~ArcProcess() = default;
+
+ArcProcess::ArcProcess(ArcProcess&& other) = default;
+ArcProcess& ArcProcess::operator=(ArcProcess&& other) = default;
+
+} // namespace arc
« no previous file with comments | « chrome/browser/chromeos/arc/arc_process.h ('k') | chrome/browser/chromeos/arc/arc_process_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698