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

Unified 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: Default to 0 Ids in IntersitialPageImpl 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 side-by-side diff with in-line comments
Download patch
Index: content/common/view_messages.h
diff --git a/content/common/view_messages.h b/content/common/view_messages.h
index 4b1271c8c51c47040690623a1d79d906b9eb2f7e..8ca6d89f8e40f2e566608b99cf686e92a38853bc 100644
--- a/content/common/view_messages.h
+++ b/content/common/view_messages.h
@@ -28,6 +28,7 @@
#include "ipc/ipc_platform_file.h"
#include "media/base/channel_layout.h"
#include "media/base/media_log_event.h"
+#include "ppapi/c/pp_instance.h"
Charlie Reis 2012/05/11 17:41:03 I don't see where you're using this.
Fady Samuel 2012/05/11 22:03:34 Done.
#include "third_party/skia/include/core/SkBitmap.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebCompositionUnderline.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h"
@@ -650,9 +651,14 @@ IPC_STRUCT_BEGIN(ViewMsg_New_Params)
// The properties of the screen associated with the view.
IPC_STRUCT_MEMBER(WebKit::WebScreenInfo, screen_info)
- // Indicates whether this newly created RenderView will be hosted by another
- // RenderView.
- IPC_STRUCT_MEMBER(bool, guest)
+ // The process id of the RenderProcessHost of the embedder of this view if it
Charlie Reis 2012/05/11 17:41:03 nit: id -> ID
Fady Samuel 2012/05/11 22:03:34 Done.
+ // has one.
+ IPC_STRUCT_MEMBER(int32, embedder_process_id)
+
+ // The routing ID of the embedder of this view if it has one.
+ // The process ID + routing ID uniquely identify the RenderViewHost
Charlie Reis 2012/05/11 17:41:03 Please be specific about embedder_process_id and e
Fady Samuel 2012/05/11 22:03:34 Done.
+ // of the embedder.
+ IPC_STRUCT_MEMBER(int32, embedder_routing_id)
// The accessibility mode of the renderer.
IPC_STRUCT_MEMBER(AccessibilityMode, accessibility_mode)

Powered by Google App Engine
This is Rietveld 408576698