| Index: chrome/browser/resources/history/other_devices.js
|
| diff --git a/chrome/browser/resources/history/other_devices.js b/chrome/browser/resources/history/other_devices.js
|
| index c4c04a5f7790fe91cdfe57dea157c8d7841cbb98..2ba6f76f246f08eecd50052be2461b93a57c2ee6 100644
|
| --- a/chrome/browser/resources/history/other_devices.js
|
| +++ b/chrome/browser/resources/history/other_devices.js
|
| @@ -286,6 +286,8 @@ Device.prototype.createSessionContents_ = function(maxNumTabs) {
|
| // turns.
|
| function makeClickHandler(sessionTag, windowId, tabId) {
|
| return function(e) {
|
| + if (e.button > 1)
|
| + return; // Ignore buttons other than left and middle.
|
| recordUmaEvent_(HISTOGRAM_EVENT.LINK_CLICKED);
|
| chrome.send('openForeignSession', [sessionTag, windowId, tabId,
|
| e.button, e.altKey, e.ctrlKey, e.metaKey, e.shiftKey]);
|
|
|