| Index: chrome/browser/chromeos/process_proxy/process_proxy_registry.cc
|
| diff --git a/chrome/browser/chromeos/process_proxy/process_proxy_registry.cc b/chrome/browser/chromeos/process_proxy/process_proxy_registry.cc
|
| index 5c5a09f91025ee70b18b739252ee2dee5be81ed2..22191fcbccf0d9cde083b5a6784ad77ba8e925b6 100644
|
| --- a/chrome/browser/chromeos/process_proxy/process_proxy_registry.cc
|
| +++ b/chrome/browser/chromeos/process_proxy/process_proxy_registry.cc
|
| @@ -115,6 +115,14 @@ bool ProcessProxyRegistry::CloseProcess(pid_t pid) {
|
| return true;
|
| }
|
|
|
| +bool ProcessProxyRegistry::OnTerminalResize(pid_t pid, int width, int height) {
|
| + std::map<pid_t, ProcessProxyInfo>::iterator it = proxy_map_.find(pid);
|
| + if (it == proxy_map_.end())
|
| + return false;
|
| +
|
| + return it->second.proxy->OnTerminalResize(width, height);
|
| +}
|
| +
|
| void ProcessProxyRegistry::OnProcessOutput(pid_t pid,
|
| ProcessOutputType type, const std::string& data) {
|
| const char* type_str = ProcessOutputTypeToString(type);
|
|
|