diff options
author | rdevlin.cronin <rdevlin.cronin@chromium.org> | 2015-06-02 14:55:01 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-06-02 21:55:39 +0000 |
commit | 4bb32d7a792124a5919bbc7a8c715ca845c7996a (patch) | |
tree | d93d09922a1ffdd8195a46811f20e207930ae032 /extensions/common/extension_messages.h | |
parent | e64be7c4fc7240a9a1c612aec75dbe50305757f2 (diff) | |
download | chromium_src-4bb32d7a792124a5919bbc7a8c715ca845c7996a.zip chromium_src-4bb32d7a792124a5919bbc7a8c715ca845c7996a.tar.gz chromium_src-4bb32d7a792124a5919bbc7a8c715ca845c7996a.tar.bz2 |
[Extensions OOPI] Make programmatic script injection use frame logic
Instead of sending an inject message to a single RenderView, have the
browser send inject messages to each of the relevant render frames, and
eliminate the usage of RenderView.
For now, permissioning is still done on the renderer side, and
content scripts are unchanged.
BUG=455776
Review URL: https://codereview.chromium.org/1156583002
Cr-Commit-Position: refs/heads/master@{#332471}
Diffstat (limited to 'extensions/common/extension_messages.h')
-rw-r--r-- | extensions/common/extension_messages.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/extensions/common/extension_messages.h b/extensions/common/extension_messages.h index e998fba..56855be 100644 --- a/extensions/common/extension_messages.h +++ b/extensions/common/extension_messages.h @@ -121,9 +121,6 @@ IPC_STRUCT_BEGIN(ExtensionMsg_ExecuteCode_Params) // The webview guest source who calls to execute code. IPC_STRUCT_MEMBER(GURL, webview_src) - // Whether to inject into all frames, or only the root frame. - IPC_STRUCT_MEMBER(bool, all_frames) - // Whether to inject into about:blank (sub)frames. IPC_STRUCT_MEMBER(bool, match_about_blank) |