| Index: chrome/browser/resources/local_ntp/most_visited_util.js
|
| diff --git a/chrome/browser/resources/local_ntp/most_visited_util.js b/chrome/browser/resources/local_ntp/most_visited_util.js
|
| index 3b9589e672d65a6dd67bf75a7ba3c8b543c38b15..ad49a6d21cc0817e2044a82feb615157eee83826 100644
|
| --- a/chrome/browser/resources/local_ntp/most_visited_util.js
|
| +++ b/chrome/browser/resources/local_ntp/most_visited_util.js
|
| @@ -62,6 +62,10 @@ function createMostVisitedLink(params, href, title, text) {
|
| link.tabIndex = '-1';
|
| if (text)
|
| link.textContent = text;
|
| + link.addEventListener('mouseover', function() {
|
| + var ntpApiHandle = chrome.embeddedSearch.newTabPage;
|
| + ntpApiHandle.logEvent('NewTabPage.NumberOfMouseOvers');
|
| + });
|
| return link;
|
| }
|
|
|
|
|