Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2102)

Unified Diff: chrome/browser/sync/test/integration/dictionary_load_observer.h

Issue 11445002: Sync user's custom spellcheck dictionary (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Address comments Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/sync/test/integration/dictionary_load_observer.h
diff --git a/chrome/browser/sync/test/integration/dictionary_load_observer.h b/chrome/browser/sync/test/integration/dictionary_load_observer.h
new file mode 100644
index 0000000000000000000000000000000000000000..fe30cdddbdcff217a1f2a2ba99e659905f4a8b4b
--- /dev/null
+++ b/chrome/browser/sync/test/integration/dictionary_load_observer.h
@@ -0,0 +1,29 @@
+// 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.
+
+#ifndef CHROME_BROWSER_SYNC_TEST_INTEGRATION_DICTIONARY_LOAD_OBSERVER_H_
+#define CHROME_BROWSER_SYNC_TEST_INTEGRATION_DICTIONARY_LOAD_OBSERVER_H_
+
+#include "base/callback.h"
+#include "chrome/browser/spellchecker/spellcheck_custom_dictionary.h"
+
+// DictionaryLoadObserver is used when blocking until the
+// SpellcheckCustomDictionary finishes loading. As soon as the
+// SpellcheckCustomDictionary finishes loading, the message loop is quit.
+class DictionaryLoadObserver : public SpellcheckCustomDictionary::Observer {
+ public:
+ explicit DictionaryLoadObserver(const base::Closure& quit_task);
+ virtual ~DictionaryLoadObserver();
+
+ // SpellcheckCustomDictionary::Observer implementation.
+ virtual void OnCustomDictionaryLoaded() OVERRIDE;
+ virtual void OnCustomDictionaryChanged(
+ const SpellcheckCustomDictionary::Change* dictionary_change) OVERRIDE;
+
+ private:
+ base::Closure quit_task_;
+ DISALLOW_COPY_AND_ASSIGN(DictionaryLoadObserver);
+};
+
+#endif // CHROME_BROWSER_SYNC_TEST_INTEGRATION_DICTIONARY_LOAD_OBSERVER_H_

Powered by Google App Engine
This is Rietveld 408576698