| Index: chrome/common/render_messages.h
|
| diff --git a/chrome/common/render_messages.h b/chrome/common/render_messages.h
|
| index fe396fc3a773dcc724e47798e0e6e0e2acc4160d..387a48747d53439bf390d0bf03bb918ecdc7a382 100644
|
| --- a/chrome/common/render_messages.h
|
| +++ b/chrome/common/render_messages.h
|
| @@ -23,7 +23,6 @@
|
| #include "ipc/ipc_channel_handle.h"
|
| #include "ipc/ipc_message_macros.h"
|
| #include "ipc/ipc_platform_file.h"
|
| -#include "third_party/WebKit/public/platform/modules/app_banner/WebAppBannerPromptReply.h"
|
| #include "third_party/WebKit/public/web/WebConsoleMessage.h"
|
| #include "third_party/WebKit/public/web/WebWindowFeatures.h"
|
| #include "ui/base/window_open_disposition.h"
|
| @@ -186,9 +185,6 @@ IPC_STRUCT_TRAITS_BEGIN(WebApplicationInfo)
|
| IPC_STRUCT_TRAITS_MEMBER(mobile_capable)
|
| IPC_STRUCT_TRAITS_END()
|
|
|
| -IPC_ENUM_TRAITS_MAX_VALUE(blink::WebAppBannerPromptReply,
|
| - blink::WebAppBannerPromptReply::Cancel)
|
| -
|
| //-----------------------------------------------------------------------------
|
| // RenderView messages
|
| // These are messages sent from the browser to the renderer process.
|
| @@ -499,21 +495,6 @@ IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_ShowFlashPermissionBubble)
|
| IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_CouldNotLoadPlugin,
|
| base::FilePath /* plugin_path */)
|
|
|
| -// Asks the renderer whether an app banner should be shown. It will reply with
|
| -// ChromeViewHostMsg_AppBannerPromptReply.
|
| -IPC_MESSAGE_ROUTED2(ChromeViewMsg_AppBannerPromptRequest,
|
| - int /* request_id */,
|
| - std::string /* platform */)
|
| -
|
| -// Tells the renderer that a banner has been accepted.
|
| -IPC_MESSAGE_ROUTED2(ChromeViewMsg_AppBannerAccepted,
|
| - int32_t /* request_id */,
|
| - std::string /* platform */)
|
| -
|
| -// Tells the renderer that a banner has been dismissed.
|
| -IPC_MESSAGE_ROUTED1(ChromeViewMsg_AppBannerDismissed,
|
| - int32_t /* request_id */)
|
| -
|
| // Notification that the page has an OpenSearch description document
|
| // associated with it.
|
| IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_PageHasOSDD,
|
| @@ -622,17 +603,6 @@ IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled,
|
| bool /* enabled */)
|
| #endif
|
|
|
| -// Tells the browser process whether the web page wants the banner to be shown.
|
| -// This is a reply from ChromeViewMsg_AppBannerPromptRequest.
|
| -IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_AppBannerPromptReply,
|
| - int /* request_id */,
|
| - blink::WebAppBannerPromptReply /* reply */,
|
| - std::string /* referrer */)
|
| -
|
| -// Tells the browser to restart the app banner display pipeline.
|
| -IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_RequestShowAppBanner,
|
| - int32_t /* request_id */)
|
| -
|
| // Sent by the renderer to indicate that a fields trial has been activated.
|
| IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_FieldTrialActivated,
|
| std::string /* name */)
|
|
|