Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(160)

Side by Side Diff: extensions/common/extension_messages.h

Issue 280393003: Blobs: Catching browser-process created Blobs in extension code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Kill RenderProcessHost on a bad UUID. Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 624 matching lines...) Expand 10 before | Expand all | Expand 10 after
635 // certain conditions. This message is sent in response to several events: 635 // certain conditions. This message is sent in response to several events:
636 // 636 //
637 // * ExtensionMsg_WatchPages was received, updating the set of conditions. 637 // * ExtensionMsg_WatchPages was received, updating the set of conditions.
638 // * A new page is loaded. This will be sent after 638 // * A new page is loaded. This will be sent after
639 // FrameHostMsg_DidCommitProvisionalLoad. Currently this only fires for the 639 // FrameHostMsg_DidCommitProvisionalLoad. Currently this only fires for the
640 // main frame. 640 // main frame.
641 // * Something changed on an existing frame causing the set of matching searches 641 // * Something changed on an existing frame causing the set of matching searches
642 // to change. 642 // to change.
643 IPC_MESSAGE_ROUTED1(ExtensionHostMsg_OnWatchedPageChange, 643 IPC_MESSAGE_ROUTED1(ExtensionHostMsg_OnWatchedPageChange,
644 std::vector<std::string> /* Matching CSS selectors */) 644 std::vector<std::string> /* Matching CSS selectors */)
645
646 // Sent by the renderer when it has taken ownership of a Blob.
647 IPC_MESSAGE_ROUTED1(ExtensionHostMsg_BlobOwnershipTaken, std::string /* uuid */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698