| Index: extensions/browser/app_window/app_window.h
|
| diff --git a/extensions/browser/app_window/app_window.h b/extensions/browser/app_window/app_window.h
|
| index 06540730cc7f7ddb3de1d31a4ec1bf25e04f2b1f..59d84638e93e6b312e5038e866c602d3d4eaa91e 100644
|
| --- a/extensions/browser/app_window/app_window.h
|
| +++ b/extensions/browser/app_window/app_window.h
|
| @@ -5,10 +5,13 @@
|
| #ifndef EXTENSIONS_BROWSER_APP_WINDOW_APP_WINDOW_H_
|
| #define EXTENSIONS_BROWSER_APP_WINDOW_APP_WINDOW_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <string>
|
| #include <utility>
|
| #include <vector>
|
|
|
| +#include "base/macros.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "components/sessions/core/session_id.h"
|
| @@ -58,7 +61,7 @@ class AppWindowContents {
|
| const GURL& url) = 0;
|
|
|
| // Called to load the contents, after the app window is created.
|
| - virtual void LoadContents(int32 creator_process_id) = 0;
|
| + virtual void LoadContents(int32_t creator_process_id) = 0;
|
|
|
| // Called when the native window changes.
|
| virtual void NativeWindowChanged(NativeAppWindow* native_app_window) = 0;
|
| @@ -164,7 +167,7 @@ class AppWindow : public content::WebContentsDelegate,
|
| std::string window_key;
|
|
|
| // The process ID of the process that requested the create.
|
| - int32 creator_process_id;
|
| + int32_t creator_process_id;
|
|
|
| // Initial state of the window.
|
| ui::WindowShowState state;
|
|
|