blob: ba8be4a3d857b9a58419be39611086d69468e9e8 [file] [log] [blame]
// Copyright 2014 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 "ios/chrome/app/tests_hook.h"
#if !defined(__has_feature) || !__has_feature(objc_arc)
#error "This file requires ARC support."
#endif
namespace tests_hook {
bool DisableContextualSearch() {
return true;
}
bool DisableFirstRun() {
return true;
}
bool DisableGeolocation() {
return true;
}
bool DisableSigninRecallPromo() {
return true;
}
bool DisableUpdateService() {
return true;
}
void SetUpTestsIfPresent() {
// No-op for Earl Grey.
}
void RunTestsIfPresent() {
// No-op for Earl Grey.
}
} // namespace tests_hook