diff options
Diffstat (limited to 'chromium/components/ntp_snippets/content_suggestions_provider.cc')
-rw-r--r-- | chromium/components/ntp_snippets/content_suggestions_provider.cc | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/chromium/components/ntp_snippets/content_suggestions_provider.cc b/chromium/components/ntp_snippets/content_suggestions_provider.cc new file mode 100644 index 00000000000..34896577b98 --- /dev/null +++ b/chromium/components/ntp_snippets/content_suggestions_provider.cc @@ -0,0 +1,18 @@ +// 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 "components/ntp_snippets/content_suggestions_provider.h" + +#include "components/ntp_snippets/category_factory.h" + +namespace ntp_snippets { + +ContentSuggestionsProvider::ContentSuggestionsProvider( + Observer* observer, + CategoryFactory* category_factory) + : observer_(observer), category_factory_(category_factory) {} + +ContentSuggestionsProvider::~ContentSuggestionsProvider() = default; + +} // namespace ntp_snippets |