Index: chrome/renderer/spellchecker/spellcheck_language.h |
diff --git a/chrome/renderer/spellchecker/spellcheck_language.h b/chrome/renderer/spellchecker/spellcheck_language.h |
index 0cd2bba3e78deeaccb865e7760843727ea33122b..43fbf5b00d8d247d98a9dee3be3fe0fd52b64f85 100644 |
--- a/chrome/renderer/spellchecker/spellcheck_language.h |
+++ b/chrome/renderer/spellchecker/spellcheck_language.h |
@@ -9,8 +9,8 @@ |
#include <string> |
#include <vector> |
+#include "base/files/file.h" |
#include "base/memory/scoped_ptr.h" |
-#include "base/platform_file.h" |
#include "base/strings/string16.h" |
#include "chrome/renderer/spellchecker/spellcheck_worditerator.h" |
@@ -21,7 +21,7 @@ class SpellcheckLanguage { |
SpellcheckLanguage(); |
~SpellcheckLanguage(); |
- void Init(base::PlatformFile file, const std::string& language); |
+ void Init(base::File file, const std::string& language); |
// SpellCheck a word. |
// Returns true if spelled correctly, false otherwise. |