diff options
author | mathp@chromium.org <mathp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-25 16:47:48 +0000 |
---|---|---|
committer | mathp@chromium.org <mathp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-25 16:47:48 +0000 |
commit | bdceb3ba37b22419050d8d75fddd3bf87d1c2a2a (patch) | |
tree | f36c5a42e119c6cf3cc8da2b3daee07cff35a032 /components/suggestions/suggestions_pref_names.cc | |
parent | b49ced6688fc7d37c3a96946c43f14ef68f76eb0 (diff) | |
download | chromium_src-bdceb3ba37b22419050d8d75fddd3bf87d1c2a2a.zip chromium_src-bdceb3ba37b22419050d8d75fddd3bf87d1c2a2a.tar.gz chromium_src-bdceb3ba37b22419050d8d75fddd3bf87d1c2a2a.tar.bz2 |
[Suggestions] Moving suggestions code to a new component
Adding base::StatisticsRecorder::Initialize() to run_all_unittests to mirror another change we had made to the content test suite in https://codereview.chromium.org/330473003/
BUG=387751
TEST=Suggestions*,Blacklist*
Review URL: https://codereview.chromium.org/410673002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285598 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/suggestions/suggestions_pref_names.cc')
-rw-r--r-- | components/suggestions/suggestions_pref_names.cc | 19 |
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 |