summaryrefslogtreecommitdiffstats
path: root/chrome/browser/spellchecker/spellcheck_dictionary.h
blob: e9f8b7a9a5cc6bc5b4707b1bf2539abb1300d40c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// 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_SPELLCHECKER_SPELLCHECK_DICTIONARY_H_
#define CHROME_BROWSER_SPELLCHECKER_SPELLCHECK_DICTIONARY_H_

#include "base/basictypes.h"

// Defines a dictionary for use in the spellchecker system and provides access
// to words within the dictionary.
class SpellcheckDictionary {
 public:
  SpellcheckDictionary() {}
  virtual ~SpellcheckDictionary() {}

  virtual void Load() = 0;

 protected:
  DISALLOW_COPY_AND_ASSIGN(SpellcheckDictionary);
};

#endif  // CHROME_BROWSER_SPELLCHECKER_SPELLCHECK_DICTIONARY_H_