| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #import "ios/chrome/app/tests_hook.h" |
| 6 |
| 7 namespace tests_hook { |
| 8 |
| 9 bool DisableContextualSearch() { |
| 10 return false; |
| 11 } |
| 12 bool DisableFirstRun() { |
| 13 return false; |
| 14 } |
| 15 bool DisableSigninRecallPromo() { |
| 16 return false; |
| 17 } |
| 18 bool DisableUpdateService() { |
| 19 return false; |
| 20 } |
| 21 void SetUpTestsIfPresent() {} |
| 22 void RunTestsIfPresent() {} |
| 23 |
| 24 } // namespace tests_hook |
| OLD | NEW |