| Index: content/browser/frame_host/interstitial_page_impl.h
|
| diff --git a/content/browser/frame_host/interstitial_page_impl.h b/content/browser/frame_host/interstitial_page_impl.h
|
| index e7d2e58aa75ea963a79c0f3984ae1cf0e349be2c..0bb90cfda1d2acb498a6c703423395c8cf3db4c9 100644
|
| --- a/content/browser/frame_host/interstitial_page_impl.h
|
| +++ b/content/browser/frame_host/interstitial_page_impl.h
|
| @@ -5,9 +5,13 @@
|
| #ifndef CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_
|
| #define CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include "base/compiler_specific.h"
|
| +#include "base/macros.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/memory/weak_ptr.h"
|
| +#include "build/build_config.h"
|
| #include "content/browser/frame_host/frame_tree.h"
|
| #include "content/browser/frame_host/navigator_delegate.h"
|
| #include "content/browser/frame_host/render_frame_host_delegate.h"
|
| @@ -100,7 +104,7 @@ class CONTENT_EXPORT InterstitialPageImpl
|
| const IPC::Message& message) override;
|
| void RenderFrameCreated(RenderFrameHost* render_frame_host) override;
|
| void UpdateTitle(RenderFrameHost* render_frame_host,
|
| - int32 page_id,
|
| + int32_t page_id,
|
| const base::string16& title,
|
| base::i18n::TextDirection title_direction) override;
|
| AccessibilityMode GetAccessibilityMode() const override;
|
| @@ -126,11 +130,11 @@ class CONTENT_EXPORT InterstitialPageImpl
|
| int32_t main_frame_widget_route_id,
|
| const ViewHostMsg_CreateWindow_Params& params,
|
| SessionStorageNamespace* session_storage_namespace) override;
|
| - void CreateNewWidget(int32 render_process_id,
|
| - int32 route_id,
|
| + void CreateNewWidget(int32_t render_process_id,
|
| + int32_t route_id,
|
| blink::WebPopupType popup_type) override;
|
| - void CreateNewFullscreenWidget(int32 render_process_id,
|
| - int32 route_id) override;
|
| + void CreateNewFullscreenWidget(int32_t render_process_id,
|
| + int32_t route_id) override;
|
| void ShowCreatedWindow(int route_id,
|
| WindowOpenDisposition disposition,
|
| const gfx::Rect& initial_rect,
|
|
|