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

Unified Diff: chrome/browser/resources/engagement/site_engagement.js

Issue 2947593003: Fix an incorrect method name on the chrome://site-engagement WebUI page. (Closed)
Patch Set: Created 3 years, 6 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/engagement/site_engagement.js
diff --git a/chrome/browser/resources/engagement/site_engagement.js b/chrome/browser/resources/engagement/site_engagement.js
index 0aaaf603a35151c077fc1f662bd4d6e7c4f66627..5e826d27255d652cd01d7b1ed85cc3ac17d21b3e 100644
--- a/chrome/browser/resources/engagement/site_engagement.js
+++ b/chrome/browser/resources/engagement/site_engagement.js
@@ -111,7 +111,7 @@ define('main', [
*/
function handleScoreChange(origin, e) {
var scoreInput = e.target;
- uiHandler.setSiteEngagementScoreForUrl(origin, scoreInput.value);
+ uiHandler.setSiteEngagementBaseScoreForUrl(origin, scoreInput.value);
scoreInput.barCellRef.style.width = (scoreInput.value * 4) + 'px';
scoreInput.blur();
enableAutoupdate();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698