| 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();
|
|
|