| Index: chrome/browser/browser_process_impl.h
 | 
| diff --git a/chrome/browser/browser_process_impl.h b/chrome/browser/browser_process_impl.h
 | 
| index bc59331b5872cfb9bec3fc79d8f4d48eff8dcc72..781c65b9ea9a64b23cf700293e3da7940ad81488 100644
 | 
| --- a/chrome/browser/browser_process_impl.h
 | 
| +++ b/chrome/browser/browser_process_impl.h
 | 
| @@ -10,15 +10,18 @@
 | 
|  #ifndef CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_
 | 
|  #define CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_
 | 
|  
 | 
| +#include <stdint.h>
 | 
| +
 | 
|  #include <string>
 | 
|  
 | 
| -#include "base/basictypes.h"
 | 
|  #include "base/debug/stack_trace.h"
 | 
| +#include "base/macros.h"
 | 
|  #include "base/memory/ref_counted.h"
 | 
|  #include "base/memory/scoped_ptr.h"
 | 
|  #include "base/prefs/pref_change_registrar.h"
 | 
|  #include "base/threading/non_thread_safe.h"
 | 
|  #include "base/timer/timer.h"
 | 
| +#include "build/build_config.h"
 | 
|  #include "chrome/browser/browser_process.h"
 | 
|  
 | 
|  class ChromeChildProcessWatcher;
 | 
| @@ -109,7 +112,7 @@ class BrowserProcessImpl : public BrowserProcess,
 | 
|    void CreateDevToolsHttpProtocolHandler(
 | 
|        chrome::HostDesktopType host_desktop_type,
 | 
|        const std::string& ip,
 | 
| -      uint16 port) override;
 | 
| +      uint16_t port) override;
 | 
|    unsigned int AddRefModule() override;
 | 
|    unsigned int ReleaseModule() override;
 | 
|    bool IsShuttingDown() override;
 | 
| 
 |