| Index: chrome/browser/spellchecker/spellcheck_service_browsertest.cc | 
| diff --git a/chrome/browser/spellchecker/spellcheck_service_browsertest.cc b/chrome/browser/spellchecker/spellcheck_service_browsertest.cc | 
| index 55b87bdee5845cd8b26e422db50b4a5b4c93a408..506c1b01b06af04ac5f526ec3f2c0cdca567122a 100644 | 
| --- a/chrome/browser/spellchecker/spellcheck_service_browsertest.cc | 
| +++ b/chrome/browser/spellchecker/spellcheck_service_browsertest.cc | 
| @@ -2,7 +2,11 @@ | 
| // Use of this source code is governed by a BSD-style license that can be | 
| // found in the LICENSE file. | 
|  | 
| +#include <stddef.h> | 
| +#include <stdint.h> | 
| + | 
| #include "base/command_line.h" | 
| +#include "base/macros.h" | 
| #include "base/path_service.h" | 
| #include "base/prefs/pref_service.h" | 
| #include "base/synchronization/waitable_event.h" | 
| @@ -25,16 +29,13 @@ namespace { | 
|  | 
| // A corrupted BDICT data used in DeleteCorruptedBDICT. Please do not use this | 
| // BDICT data for other tests. | 
| -const uint8 kCorruptedBDICT[] = { | 
| -  0x42, 0x44, 0x69, 0x63, 0x02, 0x00, 0x01, 0x00, | 
| -  0x20, 0x00, 0x00, 0x00, 0x3b, 0x00, 0x00, 0x00, | 
| -  0x65, 0x72, 0xe0, 0xac, 0x27, 0xc7, 0xda, 0x66, | 
| -  0x6d, 0x1e, 0xa6, 0x35, 0xd1, 0xf6, 0xb7, 0x35, | 
| -  0x32, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, | 
| -  0x39, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, | 
| -  0x0a, 0x0a, 0x41, 0x46, 0x20, 0x30, 0x00, 0x00, | 
| -  0x00, 0x00, 0x00, 0xe6, 0x49, 0x00, 0x68, 0x02, | 
| -  0x73, 0x06, 0x74, 0x0b, 0x77, 0x11, 0x79, 0x15, | 
| +const uint8_t kCorruptedBDICT[] = { | 
| +    0x42, 0x44, 0x69, 0x63, 0x02, 0x00, 0x01, 0x00, 0x20, 0x00, 0x00, 0x00, | 
| +    0x3b, 0x00, 0x00, 0x00, 0x65, 0x72, 0xe0, 0xac, 0x27, 0xc7, 0xda, 0x66, | 
| +    0x6d, 0x1e, 0xa6, 0x35, 0xd1, 0xf6, 0xb7, 0x35, 0x32, 0x00, 0x00, 0x00, | 
| +    0x38, 0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, | 
| +    0x0a, 0x0a, 0x41, 0x46, 0x20, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, | 
| +    0x49, 0x00, 0x68, 0x02, 0x73, 0x06, 0x74, 0x0b, 0x77, 0x11, 0x79, 0x15, | 
| }; | 
|  | 
| }  // namespace | 
|  |