| 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 // 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 621 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 632 // certain conditions. This message is sent in response to several events: | 632 // certain conditions. This message is sent in response to several events: |
| 633 // | 633 // |
| 634 // * ExtensionMsg_WatchPages was received, updating the set of conditions. | 634 // * ExtensionMsg_WatchPages was received, updating the set of conditions. |
| 635 // * A new page is loaded. This will be sent after | 635 // * A new page is loaded. This will be sent after |
| 636 // FrameHostMsg_DidCommitProvisionalLoad. Currently this only fires for the | 636 // FrameHostMsg_DidCommitProvisionalLoad. Currently this only fires for the |
| 637 // main frame. | 637 // main frame. |
| 638 // * Something changed on an existing frame causing the set of matching searches | 638 // * Something changed on an existing frame causing the set of matching searches |
| 639 // to change. | 639 // to change. |
| 640 IPC_MESSAGE_ROUTED1(ExtensionHostMsg_OnWatchedPageChange, | 640 IPC_MESSAGE_ROUTED1(ExtensionHostMsg_OnWatchedPageChange, |
| 641 std::vector<std::string> /* Matching CSS selectors */) | 641 std::vector<std::string> /* Matching CSS selectors */) |
| 642 |
| 643 // Sent by the renderer when it has taken ownership of a Blob. |
| 644 IPC_MESSAGE_ROUTED1(ExtensionHostMsg_BlobOwnershipTaken, std::string /* uuid */) |
| OLD | NEW |