| Index: base/debug/debugger_posix.cc | 
| diff --git a/base/debug/debugger_posix.cc b/base/debug/debugger_posix.cc | 
| index 3255552333a339564e132dc3f58bf6d53b87de32..e00110aa658d4600783bba1b8e3c87bc3e644fd0 100644 | 
| --- a/base/debug/debugger_posix.cc | 
| +++ b/base/debug/debugger_posix.cc | 
| @@ -161,6 +161,13 @@ bool BeingDebugged() { | 
| return pid_index < status.size() && status[pid_index] != '0'; | 
| } | 
|  | 
| +#elif defined(OS_FUCHSIA) | 
| + | 
| +bool BeingDebugged() { | 
| +  // TODO(scottmg): Port. | 
| +  return false; | 
| +} | 
| + | 
| #else | 
|  | 
| bool BeingDebugged() { | 
|  |