| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // IPC messages for extensions. | 5 // IPC messages for extensions. |
| 6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 IPC_STRUCT_TRAITS_MEMBER(width) | 158 IPC_STRUCT_TRAITS_MEMBER(width) |
| 159 IPC_STRUCT_TRAITS_MEMBER(height) | 159 IPC_STRUCT_TRAITS_MEMBER(height) |
| 160 IPC_STRUCT_TRAITS_MEMBER(data) | 160 IPC_STRUCT_TRAITS_MEMBER(data) |
| 161 IPC_STRUCT_TRAITS_END() | 161 IPC_STRUCT_TRAITS_END() |
| 162 | 162 |
| 163 IPC_STRUCT_TRAITS_BEGIN(WebApplicationInfo) | 163 IPC_STRUCT_TRAITS_BEGIN(WebApplicationInfo) |
| 164 IPC_STRUCT_TRAITS_MEMBER(title) | 164 IPC_STRUCT_TRAITS_MEMBER(title) |
| 165 IPC_STRUCT_TRAITS_MEMBER(description) | 165 IPC_STRUCT_TRAITS_MEMBER(description) |
| 166 IPC_STRUCT_TRAITS_MEMBER(app_url) | 166 IPC_STRUCT_TRAITS_MEMBER(app_url) |
| 167 IPC_STRUCT_TRAITS_MEMBER(icons) | 167 IPC_STRUCT_TRAITS_MEMBER(icons) |
| 168 IPC_STRUCT_TRAITS_MEMBER(permissions) | |
| 169 IPC_STRUCT_TRAITS_MEMBER(launch_container) | |
| 170 IPC_STRUCT_TRAITS_MEMBER(is_offline_enabled) | |
| 171 IPC_STRUCT_TRAITS_END() | 168 IPC_STRUCT_TRAITS_END() |
| 172 | 169 |
| 173 IPC_STRUCT_TRAITS_BEGIN(extensions::DraggableRegion) | 170 IPC_STRUCT_TRAITS_BEGIN(extensions::DraggableRegion) |
| 174 IPC_STRUCT_TRAITS_MEMBER(draggable) | 171 IPC_STRUCT_TRAITS_MEMBER(draggable) |
| 175 IPC_STRUCT_TRAITS_MEMBER(bounds) | 172 IPC_STRUCT_TRAITS_MEMBER(bounds) |
| 176 IPC_STRUCT_TRAITS_END() | 173 IPC_STRUCT_TRAITS_END() |
| 177 | 174 |
| 178 IPC_ENUM_TRAITS(content::SocketPermissionRequest::OperationType) | 175 IPC_ENUM_TRAITS(content::SocketPermissionRequest::OperationType) |
| 179 | 176 |
| 180 IPC_STRUCT_TRAITS_BEGIN(content::SocketPermissionRequest) | 177 IPC_STRUCT_TRAITS_BEGIN(content::SocketPermissionRequest) |
| (...skipping 489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 670 // Notifies the browser process that a tab has started or stopped matching | 667 // Notifies the browser process that a tab has started or stopped matching |
| 671 // certain conditions. This message is sent in response to several events: | 668 // certain conditions. This message is sent in response to several events: |
| 672 // | 669 // |
| 673 // * ExtensionMsg_WatchPages was received, updating the set of conditions. | 670 // * ExtensionMsg_WatchPages was received, updating the set of conditions. |
| 674 // * A new page is loaded. This will be sent after ViewHostMsg_FrameNavigate. | 671 // * A new page is loaded. This will be sent after ViewHostMsg_FrameNavigate. |
| 675 // Currently this only fires for the main frame. | 672 // Currently this only fires for the main frame. |
| 676 // * Something changed on an existing frame causing the set of matching searches | 673 // * Something changed on an existing frame causing the set of matching searches |
| 677 // to change. | 674 // to change. |
| 678 IPC_MESSAGE_ROUTED1(ExtensionHostMsg_OnWatchedPageChange, | 675 IPC_MESSAGE_ROUTED1(ExtensionHostMsg_OnWatchedPageChange, |
| 679 std::vector<std::string> /* Matching CSS selectors */) | 676 std::vector<std::string> /* Matching CSS selectors */) |
| OLD | NEW |