blob: 150544a10595fa14d6ab0d6da6645d7c39dd72dd [file] [log] [blame]
// Copyright (c) 2012 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/sync/test/integration/dictionary_load_observer.h"
DictionaryLoadObserver::DictionaryLoadObserver(base::OnceClosure quit_task)
: quit_task_(std::move(quit_task)) {}
DictionaryLoadObserver::~DictionaryLoadObserver() = default;
void DictionaryLoadObserver::OnCustomDictionaryLoaded() {
std::move(quit_task_).Run();
}
void DictionaryLoadObserver::OnCustomDictionaryChanged(
const SpellcheckCustomDictionary::Change& dictionary_change) {
}