| Index: chromeos/process_proxy/process_output_watcher.cc
|
| diff --git a/chrome/browser/chromeos/process_proxy/process_output_watcher.cc b/chromeos/process_proxy/process_output_watcher.cc
|
| similarity index 96%
|
| rename from chrome/browser/chromeos/process_proxy/process_output_watcher.cc
|
| rename to chromeos/process_proxy/process_output_watcher.cc
|
| index b89537aa1d4cf8e0f659c40b6ccde0c870e70512..40ed8cf63579e179422fd8a04c257c08d016241a 100644
|
| --- a/chrome/browser/chromeos/process_proxy/process_output_watcher.cc
|
| +++ b/chromeos/process_proxy/process_output_watcher.cc
|
| @@ -2,7 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "chrome/browser/chromeos/process_proxy/process_output_watcher.h"
|
| +#include "chromeos/process_proxy/process_output_watcher.h"
|
|
|
| #include <algorithm>
|
| #include <cstdio>
|
| @@ -34,6 +34,8 @@ void CloseFd(int* fd) {
|
|
|
| } // namespace
|
|
|
| +namespace chromeos {
|
| +
|
| ProcessOutputWatcher::ProcessOutputWatcher(int out_fd, int stop_fd,
|
| const ProcessOutputCallback& callback)
|
| : out_fd_(out_fd),
|
| @@ -114,3 +116,5 @@ void ProcessOutputWatcher::ReadFromFd(ProcessOutputType type, int* fd) {
|
| void ProcessOutputWatcher::OnStop() {
|
| delete this;
|
| }
|
| +
|
| +} // namespace chromeos
|
|
|