aboutsummaryrefslogtreecommitdiffstats
path: root/background_scripts/main.js
diff options
context:
space:
mode:
Diffstat (limited to 'background_scripts/main.js')
-rw-r--r--background_scripts/main.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/background_scripts/main.js b/background_scripts/main.js
index 49790b87..4dc11181 100644
--- a/background_scripts/main.js
+++ b/background_scripts/main.js
@@ -24,7 +24,6 @@ var portHandlers = {
var sendRequestHandlers = {
getCompletionKeys: getCompletionKeysRequest,
- getLinkHintCss: getLinkHintCss,
openUrlInNewTab: openUrlInNewTab,
openUrlInCurrentTab: openUrlInCurrentTab,
openOptionsPageInNewTab: openOptionsPageInNewTab,
@@ -239,13 +238,6 @@ function openCopiedUrlInCurrentTab(request) { openUrlInCurrentTab({ url: Clipboa
function openCopiedUrlInNewTab(request) { openUrlInNewTab({ url: Clipboard.paste() }); }
/*
- * Returns the user-provided CSS overrides.
- */
-function getLinkHintCss(request) {
- return { linkHintCss: (Settings.get("userDefinedLinkHintCss") || "") };
-}
-
-/*
* Called when the user has clicked the close icon on the "Vimium has been updated" message.
* We should now dismiss that message in all tabs.
*/