content_suggestions_provider.cc 463 B

1234567891011121314
  1. // Copyright 2016 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "components/ntp_snippets/content_suggestions_provider.h"
  5. namespace ntp_snippets {
  6. ContentSuggestionsProvider::ContentSuggestionsProvider(Observer* observer)
  7. : observer_(observer) {}
  8. ContentSuggestionsProvider::~ContentSuggestionsProvider() = default;
  9. } // namespace ntp_snippets