Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(394)

Unified Diff: components/safe_browsing_db/v4_feature_list.cc

Issue 2381963003: Revert of Small: Start checking URLs using PVer4. Verdict not returned to client yet. (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/safe_browsing_db/v4_feature_list.cc
diff --git a/components/safe_browsing_db/v4_feature_list.cc b/components/safe_browsing_db/v4_feature_list.cc
deleted file mode 100644
index 7c0bf093bccc7579d0cb977dc1cd8182ac4f8ede..0000000000000000000000000000000000000000
--- a/components/safe_browsing_db/v4_feature_list.cc
+++ /dev/null
@@ -1,42 +0,0 @@
-// Copyright 2016 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 "base/feature_list.h"
-#include "components/safe_browsing_db/v4_feature_list.h"
-
-namespace safe_browsing {
-
-namespace V4FeatureList {
-
-#ifdef NDEBUG
-namespace {
-const base::Feature kLocalDatabaseManagerEnabled{
- "SafeBrowsingV4LocalDatabaseManagerEnabled",
- base::FEATURE_DISABLED_BY_DEFAULT};
-
-const base::Feature kParallelCheckEnabled{"SafeBrowingV4ParallelCheckEnabled",
- base::FEATURE_DISABLED_BY_DEFAULT};
-} // namespace
-#endif
-
-bool IsLocalDatabaseManagerEnabled() {
-#ifndef NDEBUG
- return true;
-#else
- return IsParallelCheckEnabled() ||
- base::FeatureList::IsEnabled(kLocalDatabaseManagerEnabled);
-#endif
-}
-
-bool IsParallelCheckEnabled() {
-#ifndef NDEBUG
- return true;
-#else
- return base::FeatureList::IsEnabled(kParallelCheckEnabled);
-#endif
-}
-
-} // namespace V4FeatureList
-
-} // namespace safe_browsing
« no previous file with comments | « components/safe_browsing_db/v4_feature_list.h ('k') | components/safe_browsing_db/v4_local_database_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698