Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3465)

Unified Diff: chrome/browser/resources/local_ntp/most_visited_single.js

Issue 2429523002: Cleanup desktop NTP metrics recording (Closed)
Patch Set: . Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/local_ntp/most_visited_thumbnail.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/local_ntp/most_visited_single.js
diff --git a/chrome/browser/resources/local_ntp/most_visited_single.js b/chrome/browser/resources/local_ntp/most_visited_single.js
index 535c3fe624a4876b38edc0ddb171b8e394bddaf0..10ad3df65a6e1fac99db72b52cef2575e3ed1976 100644
--- a/chrome/browser/resources/local_ntp/most_visited_single.js
+++ b/chrome/browser/resources/local_ntp/most_visited_single.js
@@ -16,13 +16,10 @@
* @const
*/
var LOG_TYPE = {
- // The suggestion is coming from the server.
+ // A suggestion coming from the server was rendered.
NTP_SERVER_SIDE_SUGGESTION: 0,
- // The suggestion is coming from the client.
+ // A suggestion coming from the client was rendered.
NTP_CLIENT_SIDE_SUGGESTION: 1,
- // Indicates a tile was rendered, no matter if it's a thumbnail, a gray tile
- // or an external tile.
- NTP_TILE: 2,
// All NTP Tiles have finished loading (successfully or failing).
NTP_ALL_TILES_LOADED: 11,
};
@@ -371,7 +368,6 @@ var renderTile = function(data) {
return tile;
}
- logEvent(LOG_TYPE.NTP_TILE);
// The tile will be appended to tiles.
var position = tiles.children.length;
logMostVisitedImpression(position, data.tileSource);
« no previous file with comments | « no previous file | chrome/browser/resources/local_ntp/most_visited_thumbnail.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698