blob: f54e2995f4a078126e56c10e7d6ab53bee5b18c4 [file] [log] [blame]
// Copyright 2018 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 "ash/app_list/test/test_app_list_client.h"
#include "ash/shell.h"
namespace ash {
TestAppListClient::TestAppListClient() : binding_(this) {}
TestAppListClient::~TestAppListClient() {}
mojom::AppListClientPtr TestAppListClient::CreateInterfacePtrAndBind() {
mojom::AppListClientPtr ptr;
binding_.Bind(mojo::MakeRequest(&ptr));
return ptr;
}
} // namespace ash