| Index: components/search_engines/util.cc
 | 
| diff --git a/components/search_engines/util.cc b/components/search_engines/util.cc
 | 
| index 01c95974ec6cef196b8bf4ffc54dabfdf43564bc..1247ce2a953d1e73a94d32f2a58aa82e3b9c2bf1 100644
 | 
| --- a/components/search_engines/util.cc
 | 
| +++ b/components/search_engines/util.cc
 | 
| @@ -4,6 +4,9 @@
 | 
|  
 | 
|  #include "components/search_engines/util.h"
 | 
|  
 | 
| +#include <stddef.h>
 | 
| +#include <stdint.h>
 | 
| +
 | 
|  #include <map>
 | 
|  #include <set>
 | 
|  #include <string>
 | 
| @@ -142,7 +145,7 @@ void RemoveDuplicatePrepopulateIDs(
 | 
|  // If not found, returns NULL.
 | 
|  TemplateURL* GetTemplateURLByID(
 | 
|      const TemplateURLService::TemplateURLVector& template_urls,
 | 
| -    int64 id) {
 | 
| +    int64_t id) {
 | 
|    for (TemplateURLService::TemplateURLVector::const_iterator i(
 | 
|         template_urls.begin()); i != template_urls.end(); ++i) {
 | 
|      if ((*i)->id() == id) {
 | 
| 
 |