blob: 9b9a7c54fea002fc05b4e3f0c2e156e3f8fcfbda [file] [log] [blame]
// Copyright 2020 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 "chrome/browser/ui/read_later/read_later_test_utils.h"
#include "base/macros.h"
#include "base/run_loop.h"
#include "components/reading_list/core/reading_list_model.h"
namespace test {
ReadingListLoadObserver::ReadingListLoadObserver(ReadingListModel* model)
: model_(model) {
model_->AddObserver(this);
}
ReadingListLoadObserver::~ReadingListLoadObserver() {
model_->RemoveObserver(this);
}
void ReadingListLoadObserver::Wait() {
if (model_->loaded())
return;
run_loop_.Run();
}
void ReadingListLoadObserver::ReadingListModelLoaded(
const ReadingListModel* model) {
run_loop_.Quit();
}
} // namespace test