| Index: chrome/browser/browser_process.h
 | 
| diff --git a/chrome/browser/browser_process.h b/chrome/browser/browser_process.h
 | 
| index 4bbe46ac56b2660ac99872a1eff4c3aaf75ab08a..a93fabfc6bd977c6e72715147f89f7ade29e56e4 100644
 | 
| --- a/chrome/browser/browser_process.h
 | 
| +++ b/chrome/browser/browser_process.h
 | 
| @@ -10,10 +10,13 @@
 | 
|  #ifndef CHROME_BROWSER_BROWSER_PROCESS_H_
 | 
|  #define CHROME_BROWSER_BROWSER_PROCESS_H_
 | 
|  
 | 
| +#include <stdint.h>
 | 
| +
 | 
|  #include <string>
 | 
|  
 | 
| -#include "base/basictypes.h"
 | 
| +#include "base/macros.h"
 | 
|  #include "base/memory/scoped_ptr.h"
 | 
| +#include "build/build_config.h"
 | 
|  #include "chrome/browser/browser_process_platform_part.h"
 | 
|  #include "chrome/browser/shell_integration.h"
 | 
|  #include "chrome/browser/ui/host_desktop.h"
 | 
| @@ -182,7 +185,7 @@ class BrowserProcess {
 | 
|    virtual void CreateDevToolsHttpProtocolHandler(
 | 
|        chrome::HostDesktopType host_desktop_type,
 | 
|        const std::string& ip,
 | 
| -      uint16 port) = 0;
 | 
| +      uint16_t port) = 0;
 | 
|  
 | 
|    virtual unsigned int AddRefModule() = 0;
 | 
|    virtual unsigned int ReleaseModule() = 0;
 | 
| 
 |