blob: 7ce720fd7df569485e999ee04b3c49e2b9cf6d71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// 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_
#pragma once
// Observer for the SpellCheckHost.
class SpellCheckHostObserver {
public:
// Invoked on the UI thread when SpellCheckHost is initialized.
virtual void SpellCheckHostInitialized() = 0;
protected:
virtual ~SpellCheckHostObserver() {}
};
#endif // CHROME_BROWSER_SPELLCHECK_HOST_OBSERVER_H_
|