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

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

Issue 497103002: Move ChromeExtensionHostMsg_AttachGuest to extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move guest_view_internal register to dispatcher in extensions. 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/browser/extension_message_filter.cc ('k') | extensions/extensions.gyp » ('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 700 matching lines...) Expand 10 before | Expand all | Expand 10 after
711 bool /* is_top_level */, 711 bool /* is_top_level */,
712 std::string /* name */) 712 std::string /* name */)
713 713
714 // Tells listeners that a detailed message was reported to the console by 714 // Tells listeners that a detailed message was reported to the console by
715 // WebKit. 715 // WebKit.
716 IPC_MESSAGE_ROUTED4(ExtensionHostMsg_DetailedConsoleMessageAdded, 716 IPC_MESSAGE_ROUTED4(ExtensionHostMsg_DetailedConsoleMessageAdded,
717 base::string16 /* message */, 717 base::string16 /* message */,
718 base::string16 /* source */, 718 base::string16 /* source */,
719 extensions::StackTrace /* stack trace */, 719 extensions::StackTrace /* stack trace */,
720 int32 /* severity level */) 720 int32 /* severity level */)
721
722 // Sent by the renderer to set initialization parameters of a Browser Plugin
723 // that is identified by |element_instance_id|.
724 IPC_MESSAGE_CONTROL4(ExtensionHostMsg_AttachGuest,
725 int /* routing_id */,
726 int /* element_instance_id */,
727 int /* guest_instance_id */,
728 base::DictionaryValue /* attach_params */)
OLDNEW
« no previous file with comments | « extensions/browser/extension_message_filter.cc ('k') | extensions/extensions.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698