blob: f1bc15bdc0929fa1f6fb739730bc4e7fe9a6e0ed [file] [log] [blame]
// Copyright 2015 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 "remoting/test/fake_host_list_fetcher.h"
namespace remoting {
namespace test {
FakeHostListFetcher::FakeHostListFetcher() {
}
FakeHostListFetcher::~FakeHostListFetcher() {
}
void FakeHostListFetcher::RetrieveHostlist(const std::string& access_token,
const std::string& target_url,
const HostlistCallback& callback) {
callback.Run(host_list_);
}
} // namespace test
} // namespace remoting