blob: 222cd918fc570aa44b9e02e880dfbfdbcb494253 [file] [log] [blame]
// Copyright (c) 2009 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_SPELLCHECK_HOST_OBSERVER_H_
#define CHROME_BROWSER_SPELLCHECK_HOST_OBSERVER_H_
// Observer for the SpellCheckHost.
class SpellCheckHostObserver {
public:
// Invoked on the UI thread when SpellCheckHost is initialized.
virtual void SpellCheckHostInitialized() = 0;
};
#endif // CHROME_BROWSER_SPELLCHECK_HOST_OBSERVER_H_