summaryrefslogtreecommitdiffstats
path: root/components/suggestions/suggestions_pref_names.cc
diff options
context:
space:
mode:
Diffstat (limited to 'components/suggestions/suggestions_pref_names.cc')
-rw-r--r--components/suggestions/suggestions_pref_names.cc19
1 files changed, 19 insertions, 0 deletions
diff --git a/components/suggestions/suggestions_pref_names.cc b/components/suggestions/suggestions_pref_names.cc
new file mode 100644
index 0000000..346a33e
--- /dev/null
+++ b/components/suggestions/suggestions_pref_names.cc
@@ -0,0 +1,19 @@
+// Copyright 2014 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 "components/suggestions/suggestions_pref_names.h"
+
+namespace suggestions {
+namespace prefs {
+
+// A cache of a suggestions blacklist, represented as a serialized
+// SuggestionsBlacklist protobuf.
+const char kSuggestionsBlacklist[] = "suggestions.blacklist";
+
+// A cache of suggestions represented as a serialized SuggestionsProfile
+// protobuf.
+const char kSuggestionsData[] = "suggestions.data";
+
+} // namespace prefs
+} // namespace suggestions