| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/debug/debugger.h" | 5 #include "base/debug/debugger.h" |
| 6 #include "ios/public/consumer/base/debugger.h" | 6 #include "ios/public/consumer/base/debugger.h" |
| 7 | 7 |
| 8 #if !defined(__has_feature) || !__has_feature(objc_arc) |
| 9 #error "This file requires ARC support." |
| 10 #endif |
| 11 |
| 8 namespace ios { | 12 namespace ios { |
| 9 | 13 |
| 10 bool BeingDebugged() { | 14 bool BeingDebugged() { |
| 11 return base::debug::BeingDebugged(); | 15 return base::debug::BeingDebugged(); |
| 12 } | 16 } |
| 13 | 17 |
| 14 } // namespace ios | 18 } // namespace ios |
| OLD | NEW |