| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Multiply-included file, no traditional include guard. | 5 // Multiply-included file, no traditional include guard. |
| 6 #include "base/strings/string16.h" | 6 #include "base/strings/string16.h" |
| 7 #include "components/content_settings/core/common/content_settings_types.h" | 7 #include "components/content_settings/core/common/content_settings_types.h" |
| 8 #include "ipc/ipc_message_macros.h" | 8 #include "ipc/ipc_message_macros.h" |
| 9 #include "url/gurl.h" | 9 #include "url/gurl.h" |
| 10 #include "url/ipc/url_param_traits.h" | 10 #include "url/ipc/url_param_traits.h" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetAllowRunningInsecureContent, | 25 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetAllowRunningInsecureContent, |
| 26 bool /* allowed */) | 26 bool /* allowed */) |
| 27 | 27 |
| 28 IPC_MESSAGE_ROUTED0(ChromeViewMsg_ReloadFrame) | 28 IPC_MESSAGE_ROUTED0(ChromeViewMsg_ReloadFrame) |
| 29 | 29 |
| 30 // Tells the renderer whether or not a file system access has been allowed. | 30 // Tells the renderer whether or not a file system access has been allowed. |
| 31 IPC_MESSAGE_ROUTED2(ChromeViewMsg_RequestFileSystemAccessAsyncResponse, | 31 IPC_MESSAGE_ROUTED2(ChromeViewMsg_RequestFileSystemAccessAsyncResponse, |
| 32 int /* request_id */, | 32 int /* request_id */, |
| 33 bool /* allowed */) | 33 bool /* allowed */) |
| 34 | 34 |
| 35 // Tells the renderer that the NPAPI cannot be used. For example Ash on windows. | |
| 36 IPC_MESSAGE_ROUTED0(ChromeViewMsg_NPAPINotSupported) | |
| 37 | |
| 38 // Tells the render frame to load all blocked plugins with the given identifier. | 35 // Tells the render frame to load all blocked plugins with the given identifier. |
| 39 IPC_MESSAGE_ROUTED1(ChromeViewMsg_LoadBlockedPlugins, | 36 IPC_MESSAGE_ROUTED1(ChromeViewMsg_LoadBlockedPlugins, |
| 40 std::string /* identifier */) | 37 std::string /* identifier */) |
| 41 | 38 |
| 42 // JavaScript related messages ----------------------------------------------- | 39 // JavaScript related messages ----------------------------------------------- |
| 43 | 40 |
| 44 // Tells the frame it is displaying an interstitial page. | 41 // Tells the frame it is displaying an interstitial page. |
| 45 IPC_MESSAGE_ROUTED0(ChromeViewMsg_SetAsInterstitial) | 42 IPC_MESSAGE_ROUTED0(ChromeViewMsg_SetAsInterstitial) |
| 46 | 43 |
| 47 //----------------------------------------------------------------------------- | 44 //----------------------------------------------------------------------------- |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 IPC_SYNC_MESSAGE_CONTROL4_1(ChromeViewHostMsg_AllowIndexedDB, | 87 IPC_SYNC_MESSAGE_CONTROL4_1(ChromeViewHostMsg_AllowIndexedDB, |
| 91 int /* render_frame_id */, | 88 int /* render_frame_id */, |
| 92 GURL /* origin_url */, | 89 GURL /* origin_url */, |
| 93 GURL /* top origin url */, | 90 GURL /* top origin url */, |
| 94 base::string16 /* database name */, | 91 base::string16 /* database name */, |
| 95 bool /* allowed */) | 92 bool /* allowed */) |
| 96 | 93 |
| 97 // Sent when the renderer was prevented from displaying insecure content in | 94 // Sent when the renderer was prevented from displaying insecure content in |
| 98 // a secure page by a security policy. The page may appear incomplete. | 95 // a secure page by a security policy. The page may appear incomplete. |
| 99 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockDisplayingInsecureContent) | 96 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_DidBlockDisplayingInsecureContent) |
| OLD | NEW |