| Index: base/debug/stack_trace_fuchsia.cc
 | 
| diff --git a/base/debug/stack_trace_fuchsia.cc b/base/debug/stack_trace_fuchsia.cc
 | 
| new file mode 100644
 | 
| index 0000000000000000000000000000000000000000..d16525d9e606c959673fd79cd196bd2682a71ff1
 | 
| --- /dev/null
 | 
| +++ b/base/debug/stack_trace_fuchsia.cc
 | 
| @@ -0,0 +1,29 @@
 | 
| +// Copyright 2017 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 "base/debug/stack_trace.h"
 | 
| +
 | 
| +namespace base {
 | 
| +namespace debug {
 | 
| +
 | 
| +// static
 | 
| +bool EnableInProcessStackDumping() {
 | 
| +  // TODO(scottmg): Port.
 | 
| +  return false;
 | 
| +}
 | 
| +
 | 
| +StackTrace::StackTrace(size_t count) {
 | 
| +  // TODO(scottmg): Port.
 | 
| +}
 | 
| +
 | 
| +void StackTrace::Print() const {
 | 
| +  // TODO(scottmg): Port.
 | 
| +}
 | 
| +
 | 
| +void StackTrace::OutputToStream(std::ostream* os) const {
 | 
| +  // TODO(scottmg): Port.
 | 
| +}
 | 
| +
 | 
| +}  // namespace debug
 | 
| +}  // namespace base
 | 
| 
 |