| Index: chrome/common/render_messages.h
 | 
| diff --git a/chrome/common/render_messages.h b/chrome/common/render_messages.h
 | 
| index 4f615f6c53ae25943b3f9c9125533ed15ad5be49..0a69720ceb57f793966c45b303aea85c1af842dc 100644
 | 
| --- a/chrome/common/render_messages.h
 | 
| +++ b/chrome/common/render_messages.h
 | 
| @@ -25,7 +25,6 @@
 | 
|  #include "chrome/common/web_application_info.h"
 | 
|  #include "components/content_settings/core/common/content_settings.h"
 | 
|  #include "components/content_settings/core/common/content_settings_pattern.h"
 | 
| -#include "components/content_settings/core/common/content_settings_types.h"
 | 
|  #include "components/nacl/common/nacl_types.h"
 | 
|  #include "content/public/common/common_param_traits.h"
 | 
|  #include "content/public/common/referrer.h"
 | 
| @@ -225,10 +224,6 @@ IPC_MESSAGE_ROUTED1(ChromeViewMsg_WebUIJavaScript,
 | 
|  IPC_MESSAGE_CONTROL1(ChromeViewMsg_SetContentSettingRules,
 | 
|                       RendererContentSettingRules /* rules */)
 | 
|  
 | 
| -// Tells the render frame to load all blocked plugins with the given identifier.
 | 
| -IPC_MESSAGE_ROUTED1(ChromeViewMsg_LoadBlockedPlugins,
 | 
| -                    std::string /* identifier */)
 | 
| -
 | 
|  // Asks the renderer to send back stats on the WebCore cache broken down by
 | 
|  // resource types.
 | 
|  IPC_MESSAGE_CONTROL0(ChromeViewMsg_GetCacheResourceStats)
 | 
| @@ -289,21 +284,6 @@ IPC_MESSAGE_ROUTED0(ChromeViewMsg_SearchBoxToggleVoiceSearch)
 | 
|  IPC_MESSAGE_CONTROL1(ChromeViewMsg_SetIsIncognitoProcess,
 | 
|                       bool /* is_incognito_processs */)
 | 
|  
 | 
| -// Sent in response to ViewHostMsg_DidBlockDisplayingInsecureContent.
 | 
| -IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetAllowDisplayingInsecureContent,
 | 
| -                    bool /* allowed */)
 | 
| -
 | 
| -// Sent in response to ViewHostMsg_DidBlockRunningInsecureContent.
 | 
| -IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetAllowRunningInsecureContent,
 | 
| -                    bool /* allowed */)
 | 
| -
 | 
| -IPC_MESSAGE_ROUTED0(ChromeViewMsg_ReloadFrame)
 | 
| -
 | 
| -// Tells the renderer whether or not a file system access has been allowed.
 | 
| -IPC_MESSAGE_ROUTED2(ChromeViewMsg_RequestFileSystemAccessAsyncResponse,
 | 
| -                    int  /* request_id */,
 | 
| -                    bool /* allowed */)
 | 
| -
 | 
|  // Sent when the profile changes the kSafeBrowsingEnabled preference.
 | 
|  IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetClientSidePhishingDetection,
 | 
|                      bool /* enable_phishing_detection */)
 | 
| @@ -361,9 +341,6 @@ IPC_MESSAGE_CONTROL0(ChromeViewHostMsg_ShowBrowserAccountManagementUI)
 | 
|  
 | 
|  // JavaScript related messages -----------------------------------------------
 | 
|  
 | 
| -// Tells the frame it is displaying an interstitial page.
 | 
| -IPC_MESSAGE_ROUTED0(ChromeViewMsg_SetAsInterstitial)
 | 
| -
 | 
|  // Provides the renderer with the results of the browser's investigation into
 | 
|  // why a recent main frame load failed (currently, just DNS probe result).
 | 
|  // NetErrorHelper will receive this mesage and replace or update the error
 | 
| @@ -387,31 +364,6 @@ IPC_MESSAGE_ROUTED5(ChromeViewMsg_SetNavigationCorrectionInfo,
 | 
|  IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_UpdatedCacheStats,
 | 
|                       blink::WebCache::UsageStats /* stats */)
 | 
|  
 | 
| -// Tells the browser that content in the current page was blocked due to the
 | 
| -// user's content settings.
 | 
| -IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_ContentBlocked,
 | 
| -                    ContentSettingsType /* type of blocked content */,
 | 
| -                    base::string16 /* details on blocked content */)
 | 
| -
 | 
| -// Sent by the renderer process to check whether access to web databases is
 | 
| -// granted by content settings.
 | 
| -IPC_SYNC_MESSAGE_CONTROL5_1(ChromeViewHostMsg_AllowDatabase,
 | 
| -                            int /* render_frame_id */,
 | 
| -                            GURL /* origin_url */,
 | 
| -                            GURL /* top origin url */,
 | 
| -                            base::string16 /* database name */,
 | 
| -                            base::string16 /* database display name */,
 | 
| -                            bool /* allowed */)
 | 
| -
 | 
| -// Sent by the renderer process to check whether access to DOM Storage is
 | 
| -// granted by content settings.
 | 
| -IPC_SYNC_MESSAGE_CONTROL4_1(ChromeViewHostMsg_AllowDOMStorage,
 | 
| -                            int /* render_frame_id */,
 | 
| -                            GURL /* origin_url */,
 | 
| -                            GURL /* top origin url */,
 | 
| -                            bool /* if true local storage, otherwise session */,
 | 
| -                            bool /* allowed */)
 | 
| -
 | 
|  // Sent by the renderer process to check whether access to FileSystem is
 | 
|  // granted by content settings.
 | 
|  IPC_SYNC_MESSAGE_CONTROL3_1(ChromeViewHostMsg_RequestFileSystemAccessSync,
 | 
| @@ -420,23 +372,6 @@ IPC_SYNC_MESSAGE_CONTROL3_1(ChromeViewHostMsg_RequestFileSystemAccessSync,
 | 
|                              GURL /* top origin url */,
 | 
|                              bool /* allowed */)
 | 
|  
 | 
| -// Sent by the renderer process to check whether access to FileSystem is
 | 
| -// granted by content settings.
 | 
| -IPC_MESSAGE_CONTROL4(ChromeViewHostMsg_RequestFileSystemAccessAsync,
 | 
| -                    int /* render_frame_id */,
 | 
| -                    int /* request_id */,
 | 
| -                    GURL /* origin_url */,
 | 
| -                    GURL /* top origin url */)
 | 
| -
 | 
| -// Sent by the renderer process to check whether access to Indexed DBis
 | 
| -// granted by content settings.
 | 
| -IPC_SYNC_MESSAGE_CONTROL4_1(ChromeViewHostMsg_AllowIndexedDB,
 | 
| -                            int /* render_frame_id */,
 | 
| -                            GURL /* origin_url */,
 | 
| -                            GURL /* top origin url */,
 | 
| -                            base::string16 /* database name */,
 | 
| -                            bool /* allowed */)
 | 
| -
 | 
|  // Return information about a plugin for the given URL and MIME type.
 | 
|  // In contrast to ViewHostMsg_GetPluginInfo in content/, this IPC call knows
 | 
|  // about specific reasons why a plugin can't be used, for example because it's
 | 
| @@ -514,9 +449,6 @@ IPC_MESSAGE_ROUTED2(ChromeViewMsg_AppBannerPromptRequest,
 | 
|                      int /* request_id */,
 | 
|                      std::string /* platform */)
 | 
|  
 | 
| -// Tells the renderer that the NPAPI cannot be used. For example Ash on windows.
 | 
| -IPC_MESSAGE_ROUTED0(ChromeViewMsg_NPAPINotSupported)
 | 
| -
 | 
|  // Notification that the page has an OpenSearch description document
 | 
|  // associated with it.
 | 
|  IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_PageHasOSDD,
 | 
| @@ -557,10 +489,6 @@ IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_ResourceTypeStats,
 | 
|  // only when the renderer is prerendering.
 | 
|  IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_CancelPrerenderForPrinting)
 | 
|  
 | 
| -// Sent when the renderer was prevented from displaying insecure content in
 | 
| -// a secure page by a security policy.  The page may appear incomplete.
 | 
| -IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockDisplayingInsecureContent)
 | 
| -
 | 
|  IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_DidGetWebApplicationInfo,
 | 
|                      WebApplicationInfo)
 | 
|  
 | 
| 
 |