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

Unified Diff: components/subresource_filter/core/browser/subresource_filter_constants.cc

Issue 2182493009: Framework for indexing of subresource filtering rules. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Attempt #2 to fix tests on Windows. Created 4 years, 5 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/subresource_filter/core/browser/subresource_filter_constants.cc
diff --git a/components/subresource_filter/core/browser/subresource_filter_constants.cc b/components/subresource_filter/core/browser/subresource_filter_constants.cc
index 664990e33aeba9cd9026373a893bc9a46336da16..cf61cf9ea0d102c6e11d58054509e614218810ad 100644
--- a/components/subresource_filter/core/browser/subresource_filter_constants.cc
+++ b/components/subresource_filter/core/browser/subresource_filter_constants.cc
@@ -6,8 +6,14 @@
namespace subresource_filter {
-const base::FilePath::CharType kRulesetBaseDirectoryName[] =
- FILE_PATH_LITERAL("Subresource Filtering Rules");
+const base::FilePath::CharType kTopLevelDirectoryName[] =
+ FILE_PATH_LITERAL("Subresource Filter");
+
+const base::FilePath::CharType kIndexedRulesetBaseDirectoryName[] =
+ FILE_PATH_LITERAL("Indexed Rules");
+
+const base::FilePath::CharType kUnindexedRulesetBaseDirectoryName[] =
+ FILE_PATH_LITERAL("Unindexed Rules");
const base::FilePath::CharType kRulesetDataFileName[] =
FILE_PATH_LITERAL("Ruleset Data");

Powered by Google App Engine
This is Rietveld 408576698