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

Unified Diff: chrome/ext/background.js

Issue 6332121983483904: Issue 1824 - Removed unused method Page.activate() (Closed)
Patch Set: Created Jan. 16, 2015, 1:28 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 | safari/ext/background.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/ext/background.js
===================================================================
--- a/chrome/ext/background.js
+++ b/chrome/ext/background.js
@@ -46,19 +46,6 @@
return frame.url;
}
},
- activate: function()
- {
- chrome.tabs.get(this._id, function(tab)
- {
- chrome.tabs.highlight(
- {
- windowId: tab.windowId,
- tabs: [tab.index]
- },
- function() {}
- );
- });
- },
sendMessage: function(message, responseCallback)
{
chrome.tabs.sendMessage(this._id, message, responseCallback);
« no previous file with comments | « no previous file | safari/ext/background.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld