test_utils.cc 535 B

1234567891011121314151617181920
  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/remote/test_utils.h"
  5. #include <memory>
  6. namespace ntp_snippets {
  7. namespace test {
  8. RemoteSuggestionsTestUtils::RemoteSuggestionsTestUtils()
  9. : pref_service_(std::make_unique<TestingPrefServiceSyncable>()) {}
  10. RemoteSuggestionsTestUtils::~RemoteSuggestionsTestUtils() = default;
  11. } // namespace test
  12. } // namespace ntp_snippets