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

Unified Diff: extensions/common/extension_messages.h

Issue 1312653003: Fix for WebView accessible resources. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments by kalman@. Created 5 years, 4 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: extensions/common/extension_messages.h
diff --git a/extensions/common/extension_messages.h b/extensions/common/extension_messages.h
index 462ef367759cf0d30765d1f56f9922ad92a7a9d7..f0eb6dccc3bee135aff8cef3498141b56535d633 100644
--- a/extensions/common/extension_messages.h
+++ b/extensions/common/extension_messages.h
@@ -387,6 +387,7 @@ IPC_STRUCT_BEGIN(ExtensionMsg_UpdatePermissions_Params)
IPC_STRUCT_MEMBER(ExtensionMsg_PermissionSetStruct, withheld_permissions)
IPC_STRUCT_END()
+// -----------------------------------------------------------------------------
// Messages sent from the browser to the renderer.
// The browser sends this message in response to all extension api calls. The
@@ -578,6 +579,11 @@ IPC_MESSAGE_CONTROL1(ExtensionMsg_WatchPages,
IPC_MESSAGE_CONTROL1(ExtensionMsg_TransferBlobs,
std::vector<std::string> /* blob_uuids */)
+// Report the WebView partition ID to the WebView guest renderer process.
+IPC_MESSAGE_CONTROL1(ExtensionMsg_SetWebViewPartitionID,
+ std::string /* webview_partition_id */)
+
+// -----------------------------------------------------------------------------
// Messages sent from the renderer to the browser.
// A renderer sends this message when an extension process starts an API

Powered by Google App Engine
This is Rietveld 408576698