blob: 02f5d94ededaeaaa9bcdf1e405b1c1f46ec91ea9 [file] [log] [blame]
blundellb11c2787e2015-06-22 10:05:101// Copyright 2015 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
blundell2102f7c2015-07-09 10:00:535#include "components/omnibox/browser/mock_autocomplete_provider_client.h"
blundellb11c2787e2015-06-22 10:05:106
Daniel Kenji Toyamaf1e4b572017-08-03 16:31:117#include "base/memory/ptr_util.h"
8
blundellb11c2787e2015-06-22 10:05:109MockAutocompleteProviderClient::MockAutocompleteProviderClient() {
Daniel Kenji Toyamaf1e4b572017-08-03 16:31:1110 contextual_suggestions_service_ =
11 base::MakeUnique<ContextualSuggestionsService>(
12 /*signin_manager=*/nullptr, /*token_service=*/nullptr,
13 GetRequestContext());
blundellb11c2787e2015-06-22 10:05:1014}
15
16MockAutocompleteProviderClient::~MockAutocompleteProviderClient() {
17}