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

Unified Diff: components/safe_browsing_db/v4_feature_list.cc

Issue 2371043003: Small: Start checking URLs using PVer4. Verdict not returned to client yet. (Closed)
Patch Set: feature_list file for v4. Add V4Parallel feature. 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
new file mode 100644
index 0000000000000000000000000000000000000000..1f104afcd78a9c3edfec263381f7e7a8f72829f2
--- /dev/null
+++ b/components/safe_browsing_db/v4_feature_list.cc
@@ -0,0 +1,38 @@
+// 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 {
+
+#ifdef NDEBUG
Nathan Parker 2016/09/28 22:25:55 I'm wondering if we should not auto-enable this on
vakh (use Gerrit instead) 2016/09/28 23:00:01 I agree. How about I test all that after submittin
Nathan Parker 2016/09/28 23:50:14 Sure, though the flags look simple: https://g3doc.
+namespace {
+const base::Feature kLocalDatabaseManagerEnabled{
+ "SafeBrowsingV4LocalDatabaseManagerEnabled",
+ base::FEATURE_DISABLED_BY_DEFAULT};
+
+const base::Feature kParallelCheckEnabled{"SafeBrowingV4ParallelCheckEnabled",
+ base::FEATURE_DISABLED_BY_DEFAULT};
+} // namespace
+#endif
+
+bool V4FeatureList::IsLocalDatabaseManagerEnabled() {
+#ifndef NDEBUG
+ return true;
+#else
+ return IsV4ParallelCheckEnabled() ||
+ base::FeatureList::IsEnabled(kLocalDatabaseManagerEnabled);
+#endif
+}
+
+bool V4FeatureList::IsParallelCheckEnabled() {
+#ifndef NDEBUG
+ return true;
+#else
+ return base::FeatureList::IsEnabled(kParallelCheckEnabled);
+#endif
+}
+
+} // namespace safe_browsing

Powered by Google App Engine
This is Rietveld 408576698