Index: chrome/browser/extensions/user_script_master.cc |
diff --git a/chrome/browser/extensions/user_script_master.cc b/chrome/browser/extensions/user_script_master.cc |
index 820ab5a333c8c2a952e4bebb434e8fb50d33a013..317a2d592ee08e4371f8be572e2ce22ec8920005 100644 |
--- a/chrome/browser/extensions/user_script_master.cc |
+++ b/chrome/browser/extensions/user_script_master.cc |
@@ -236,6 +236,9 @@ static base::SharedMemory* Serialize(const UserScriptList& scripts) { |
pickle.WriteSize(scripts.size()); |
for (size_t i = 0; i < scripts.size(); i++) { |
const UserScript& script = scripts[i]; |
+ // TODO(aa): This can be replaced by sending content script metadata to |
+ // renderers along with other extension data in ViewMsg_ExtensionLoaded. |
+ // See crbug.com/70516. |
script.Pickle(&pickle); |
// Write scripts as 'data' so that we can read it out in the slave without |
// allocating a new string. |