blob: 4475d7f1734480c3f98b1e1a9ec9b7a0bb62c560 [file] [log] [blame]
// Copyright 2012 The Chromium Authors
// 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) {}