OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "webkit/glue/webkit_glue.h" | 5 #include "webkit/glue/webkit_glue.h" |
6 | 6 |
7 #include "base/file_util.h" | 7 #include "base/file_util.h" |
8 #include "base/message_loop.h" | 8 #include "base/message_loop.h" |
9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
10 #include "chrome/browser/spellchecker.h" | 10 #include "chrome/browser/spellchecker.h" |
(...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
478 break; | 478 break; |
479 } | 479 } |
480 } | 480 } |
481 | 481 |
482 EXPECT_TRUE(suggested_word_is_present); | 482 EXPECT_TRUE(suggested_word_is_present); |
483 } | 483 } |
484 | 484 |
485 // Remove the temp custom dictionary file. | 485 // Remove the temp custom dictionary file. |
486 file_util::Delete(kTempCustomDictionaryFile, false); | 486 file_util::Delete(kTempCustomDictionaryFile, false); |
487 } | 487 } |
OLD | NEW |