b3fe985371
In general case we cannot use getResult() in this notification. We generate these notifications after analysis is complete in scheduler. But if there is no cached result, getResult() will schedule analysis. So, we might get into a loop. In practice this worked, because IDEA always makes files priority, so their results cached, and then subscribes for notifications. But in general case we need this protection. This also means that the 'implemented' notification works (and will work) only for priority files. R=brianwilkerson@google.com BUG= Review-Url: https://codereview.chromium.org/2965533002 .