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

Side by Side 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: review Created 4 years, 6 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 2016 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/chromeos/arc/arc_process.h"
6
7 namespace arc {
8
9 ArcProcess::ArcProcess(base::ProcessId nspid,
10 base::ProcessId pid,
11 const std::string& process_name,
12 mojom::ProcessState process_state)
13 : nspid(nspid),
14 pid(pid),
15 process_name(process_name),
16 process_state(process_state) {}
17
18 ArcProcess::~ArcProcess() = default;
19 ArcProcess::ArcProcess(const ArcProcess& rhs) = default;
20
21 } // namespace arc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698