test_support.cc 549 B

123456789101112131415161718192021
  1. // Copyright 2018 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. #include "components/services/quarantine/test_support.h"
  5. #include "build/build_config.h"
  6. #if !BUILDFLAG(IS_WIN) && !BUILDFLAG(IS_APPLE)
  7. namespace quarantine {
  8. bool IsFileQuarantined(const base::FilePath& file,
  9. const GURL& source_url,
  10. const GURL& referrer_url) {
  11. return false;
  12. }
  13. } // namespace quarantine
  14. #endif // !WIN && !MAC