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

Unified Diff: chrome/browser/spellchecker/spellcheck_dictionary.h

Issue 2244083002: Componentize spellcheck [4]: spellcheck/browser and android java-side. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 4 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/spellchecker/spellcheck_dictionary.h
diff --git a/chrome/browser/spellchecker/spellcheck_dictionary.h b/chrome/browser/spellchecker/spellcheck_dictionary.h
deleted file mode 100644
index ea94c98a2f7bfc6c11655f5f31e62be99ae21af1..0000000000000000000000000000000000000000
--- a/chrome/browser/spellchecker/spellcheck_dictionary.h
+++ /dev/null
@@ -1,23 +0,0 @@
-// 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/macros.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_

Powered by Google App Engine
This is Rietveld 408576698