| Index: content/common/quarantine/quarantine.cc
|
| diff --git a/content/browser/download/quarantine.cc b/content/common/quarantine/quarantine.cc
|
| similarity index 68%
|
| rename from content/browser/download/quarantine.cc
|
| rename to content/common/quarantine/quarantine.cc
|
| index 06a1ca5e789f892143789f176a569bbd09f0668e..4ac69516d2374bf3e52a37d7874e6f61debe53d1 100644
|
| --- a/content/browser/download/quarantine.cc
|
| +++ b/content/common/quarantine/quarantine.cc
|
| @@ -2,7 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "content/browser/download/quarantine.h"
|
| +#include "content/public/common/quarantine.h"
|
|
|
| #include "build/build_config.h"
|
|
|
| @@ -17,6 +17,12 @@ QuarantineFileResult QuarantineFile(const base::FilePath& file,
|
| return QuarantineFileResult::OK;
|
| }
|
|
|
| -} // namespace content
|
| +bool IsFileQuarantined(const base::FilePath& file,
|
| + const GURL& source_url,
|
| + const GURL& referrer_url) {
|
| + return false;
|
| +}
|
| +
|
| +} // namespace content
|
|
|
| -#endif // !WIN && !MAC && !LINUX
|
| +#endif // !WIN && !MAC && !LINUX
|
|
|