spellcheck_host_observer.h revision bc7e0823f37810f402bf7f115ee7ccd673f5ac34
1// Copyright (c) 2009 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef CHROME_BROWSER_SPELLCHECK_HOST_OBSERVER_H_
6#define CHROME_BROWSER_SPELLCHECK_HOST_OBSERVER_H_
7#pragma once
8
9// Observer for the SpellCheckHost.
10class SpellCheckHostObserver {
11 public:
12  // Invoked on the UI thread when SpellCheckHost is initialized.
13  virtual void SpellCheckHostInitialized() = 0;
14
15 protected:
16  virtual ~SpellCheckHostObserver() {}
17};
18
19#endif  // CHROME_BROWSER_SPELLCHECK_HOST_OBSERVER_H_
20