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

Unified Diff: components/spellcheck/browser/misspelling.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: components/spellcheck/browser/misspelling.h
diff --git a/chrome/browser/spellchecker/misspelling.h b/components/spellcheck/browser/misspelling.h
similarity index 91%
rename from chrome/browser/spellchecker/misspelling.h
rename to components/spellcheck/browser/misspelling.h
index 54ecdef18fdc3f090423798ab85b76763c5f300a..3ce5a63f0d9980644dc39b5b5d722816c9079cb4 100644
--- a/chrome/browser/spellchecker/misspelling.h
+++ b/components/spellcheck/browser/misspelling.h
@@ -9,8 +9,8 @@
// |action| instead of asking them how they feel about a spellcheck suggestion.
// The object can serialize itself.
-#ifndef CHROME_BROWSER_SPELLCHECKER_MISSPELLING_H_
-#define CHROME_BROWSER_SPELLCHECKER_MISSPELLING_H_
+#ifndef COMPONENTS_SPELLCHECK_BROWSER_MISSPELLING_H_
+#define COMPONENTS_SPELLCHECK_BROWSER_MISSPELLING_H_
#include <stddef.h>
#include <stdint.h>
@@ -19,7 +19,7 @@
#include <vector>
#include "base/time/time.h"
-#include "chrome/browser/spellchecker/spellcheck_action.h"
+#include "components/spellcheck/browser/spellcheck_action.h"
// Stores user feedback to a spellcheck suggestion. Sample usage:
// Misspelling misspelling.
@@ -76,4 +76,4 @@ base::string16 GetMisspelledString(const Misspelling& misspelling);
// Returns the approximate size of the misspelling when serialized.
size_t ApproximateSerializedSize(const Misspelling& misspelling);
-#endif // CHROME_BROWSER_SPELLCHECKER_MISSPELLING_H_
+#endif // COMPONENTS_SPELLCHECK_BROWSER_MISSPELLING_H_

Powered by Google App Engine
This is Rietveld 408576698