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

Unified Diff: background.js

Issue 6264613016436736: Issue #350 - iFrame block element improvements (Closed)
Patch Set: Separate unrelated changes into other code reviews Created Jan. 16, 2015, 8:29 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | include.postload.js » ('j') | include.postload.js » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: background.js
diff --git a/background.js b/background.js
index cc7903c080ca0ac073fac4f1d63e5c23ac632667..ec08169663cd8ca751c68d7c164eefc0a2a9db90 100644
--- a/background.js
+++ b/background.js
@@ -566,6 +566,14 @@ ext.onMessage.addListener(function (msg, sender, sendResponse)
return true;
}
break;
+ case "clickHide-showDialog":
Sebastian Noack 2015/01/16 22:45:31 It seems those message types are unnecessary and r
kzar 2015/01/16 23:03:45 Done.
+ if (sender.page)
+ sender.page.sendMessage(msg);
+ break;
+ case "clickHide-clear-lastRightClickEvent":
+ if (sender.page)
+ sender.page.sendMessage(msg);
+ break;
}
});
« no previous file with comments | « no previous file | include.postload.js » ('j') | include.postload.js » ('J')

Powered by Google App Engine
This is Rietveld