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

Unified Diff: chrome/browser/resources/google_now/background.js

Issue 22637002: Added Action Ignored Logging to the State Machine (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 4 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/google_now/background.js
diff --git a/chrome/browser/resources/google_now/background.js b/chrome/browser/resources/google_now/background.js
index 188545b8174a75fc37d7b0e80dece2b35936eb11..e44707d96cc03ff4199078ca6f42cbe6234fe02c 100644
--- a/chrome/browser/resources/google_now/background.js
+++ b/chrome/browser/resources/google_now/background.js
@@ -714,6 +714,9 @@ function setShouldPollCards(shouldPollCardsRequest, callback) {
startPollingCards();
else
stopPollingCards();
+ } else {
+ console.log(
+ 'Action Ignored setShouldPollCards=' + shouldPollCardsRequest);
}
callback();
});
@@ -739,6 +742,8 @@ function setToastVisible(visibleRequest, callback) {
showWelcomeToast();
else
hideWelcomeToast();
+ } else {
+ console.log('Action Ignored setToastVisible=' + visibleRequest);
}
callback();
« 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