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

Side by Side Diff: content/common/view_messages.h

Issue 10378089: Browser Plugin: Removed BrowserPluginWebContentsObserver (to be replaced by rewritten BrowserPlugi… (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Updated according to jam@ Created 8 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 (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 page rendering. 5 // IPC messages for page rendering.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include "base/process.h" 8 #include "base/process.h"
9 #include "base/shared_memory.h" 9 #include "base/shared_memory.h"
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
(...skipping 633 matching lines...) Expand 10 before | Expand all | Expand 10 after
644 IPC_STRUCT_MEMBER(bool, swapped_out) 644 IPC_STRUCT_MEMBER(bool, swapped_out)
645 645
646 // The initial page ID to use for this view, which must be larger than any 646 // The initial page ID to use for this view, which must be larger than any
647 // existing navigation that might be loaded in the view. Page IDs are unique 647 // existing navigation that might be loaded in the view. Page IDs are unique
648 // to a view and are only updated by the renderer after this initial value. 648 // to a view and are only updated by the renderer after this initial value.
649 IPC_STRUCT_MEMBER(int32, next_page_id) 649 IPC_STRUCT_MEMBER(int32, next_page_id)
650 650
651 // The properties of the screen associated with the view. 651 // The properties of the screen associated with the view.
652 IPC_STRUCT_MEMBER(WebKit::WebScreenInfo, screen_info) 652 IPC_STRUCT_MEMBER(WebKit::WebScreenInfo, screen_info)
653 653
654 // Indicates whether this newly created RenderView will be hosted by another 654 // The name of the channel with which a guest talks to its embedder.
655 // RenderView. 655 // If this newly created RenderView has no embedder this string will be
656 IPC_STRUCT_MEMBER(bool, guest) 656 // empty.
657 IPC_STRUCT_MEMBER(std::string, embedder_channel_name)
657 658
658 // The accessibility mode of the renderer. 659 // The accessibility mode of the renderer.
659 IPC_STRUCT_MEMBER(AccessibilityMode, accessibility_mode) 660 IPC_STRUCT_MEMBER(AccessibilityMode, accessibility_mode)
660 IPC_STRUCT_END() 661 IPC_STRUCT_END()
661 662
662 // Messages sent from the browser to the renderer. 663 // Messages sent from the browser to the renderer.
663 664
664 // Sent to the RenderView when a new tab is swapped into an existing 665 // Sent to the RenderView when a new tab is swapped into an existing
665 // tab and the histories need to be merged. The existing tab has a history of 666 // tab and the histories need to be merged. The existing tab has a history of
666 // |merged_history_length| which precedes the history of the new tab. All 667 // |merged_history_length| which precedes the history of the new tab. All
(...skipping 1360 matching lines...) Expand 10 before | Expand all | Expand 10 after
2027 int /* automation_id */) 2028 int /* automation_id */)
2028 2029
2029 // Sent to the browser when the renderer detects it is blocked on a pepper 2030 // Sent to the browser when the renderer detects it is blocked on a pepper
2030 // plugin message for too long. This is also sent when it becomes unhung 2031 // plugin message for too long. This is also sent when it becomes unhung
2031 // (according to the value of is_hung). The browser can give the user the 2032 // (according to the value of is_hung). The browser can give the user the
2032 // option of killing the plugin. 2033 // option of killing the plugin.
2033 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, 2034 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung,
2034 int /* plugin_child_id */, 2035 int /* plugin_child_id */,
2035 FilePath /* path */, 2036 FilePath /* path */,
2036 bool /* is_hung */) 2037 bool /* is_hung */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698