Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: chrome/ext/content.js

Issue 5162273421131776: Issue 1768 - Pass value returned by ext.onMessage listeners to chrome.runtime.onMessage listener (Closed)
Patch Set: Created Jan. 9, 2015, 10:56 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 chrome.runtime.onMessage.addListener(function(message, sender, sendResponse) 1 chrome.runtime.onMessage.addListener(function(message, sender, sendResponse)
2 { 2 {
3 return ext.onMessage._dispatch(message, {}, sendResponse); 3 return ext.onMessage._dispatch(message, {}, sendResponse).indexOf(true) != -1;
4 }); 4 });
OLDNEW

Powered by Google App Engine
This is Rietveld