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

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

Issue 376033002: Adding MimeHandlerView. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@pending-zork-patch2
Patch Set: add mime_handler_view_guest_internal.json to fix ExtensionsApiTest.StubsApp Created 6 years, 3 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
« no previous file with comments | « extensions/common/api/schemas.gypi ('k') | extensions/common/feature_switch.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 715 matching lines...) Expand 10 before | Expand all | Expand 10 after
726 extensions::StackTrace /* stack trace */, 726 extensions::StackTrace /* stack trace */,
727 int32 /* severity level */) 727 int32 /* severity level */)
728 728
729 // Sent by the renderer to set initialization parameters of a Browser Plugin 729 // Sent by the renderer to set initialization parameters of a Browser Plugin
730 // that is identified by |element_instance_id|. 730 // that is identified by |element_instance_id|.
731 IPC_MESSAGE_CONTROL4(ExtensionHostMsg_AttachGuest, 731 IPC_MESSAGE_CONTROL4(ExtensionHostMsg_AttachGuest,
732 int /* routing_id */, 732 int /* routing_id */,
733 int /* element_instance_id */, 733 int /* element_instance_id */,
734 int /* guest_instance_id */, 734 int /* guest_instance_id */,
735 base::DictionaryValue /* attach_params */) 735 base::DictionaryValue /* attach_params */)
736
737 // Tells the browser to create a mime handler guest view for a plugin.
738 IPC_MESSAGE_CONTROL4(ExtensionHostMsg_CreateMimeHandlerViewGuest,
739 int /* render_frame_id */,
740 std::string /* embedder_url */,
741 std::string /* mime_type */,
742 int /* element_instance_id */)
743
744 // The ACK for ExtensionHostMsg_CreateMimeHandlerViewGuest.
kenrb 2014/09/05 15:29:44 This should be in the ExtensionMsg_* section up hi
lazyboy 2014/09/05 19:18:25 Done.
745 IPC_MESSAGE_CONTROL1(ExtensionMsg_CreateMimeHandlerViewGuestACK,
746 int /* element_instance_id */)
OLDNEW
« no previous file with comments | « extensions/common/api/schemas.gypi ('k') | extensions/common/feature_switch.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698