This source file includes following definitions.
- OnCustomDictionaryLoaded
- OnCustomDictionaryChanged
#include "chrome/browser/sync/test/integration/dictionary_load_observer.h"
DictionaryLoadObserver::DictionaryLoadObserver(const base::Closure& quit_task)
: quit_task_(quit_task) {
}
DictionaryLoadObserver::~DictionaryLoadObserver() {
}
void DictionaryLoadObserver::OnCustomDictionaryLoaded() {
quit_task_.Run();
}
void DictionaryLoadObserver::OnCustomDictionaryChanged(
const SpellcheckCustomDictionary::Change& dictionary_change) {
}