Merge branch 'stable-2.14'

* stable-2.14:
  Revert "Adapt to recent changes in the plugin API"

This merge reverts the revert done on stable-2.14, since that commit
is actually needed on master. Thus this is in effect an empty merge.

Change-Id: Ieed503f9ef15e1f4922a6667a8347ae13e4d9f2a
diff --git a/src/main/java/com/googlesource/gerrit/plugins/verifystatus/client/VerifyStatusPlugin.java b/src/main/java/com/googlesource/gerrit/plugins/verifystatus/client/VerifyStatusPlugin.java
index 2e2575c..ec72ed8 100644
--- a/src/main/java/com/googlesource/gerrit/plugins/verifystatus/client/VerifyStatusPlugin.java
+++ b/src/main/java/com/googlesource/gerrit/plugins/verifystatus/client/VerifyStatusPlugin.java
@@ -37,17 +37,20 @@
             if (info.showJobsSummaryPanel()) {
               Plugin.get().panel(
                   GerritUiExtensionPoint.CHANGE_SCREEN_BELOW_CHANGE_INFO_BLOCK,
-                  new JobsSummaryPanel.Factory());
+                  new JobsSummaryPanel.Factory(),
+                  "VerifyStatusJobsSummaryPanel");
             }
             if (info.showJobsPanel()) {
               Plugin.get().panel(
                   GerritUiExtensionPoint.CHANGE_SCREEN_BELOW_CHANGE_INFO_BLOCK,
-                  new JobsPanel.Factory());
+                  new JobsPanel.Factory(),
+                  "VerifyStatusJobsPanel");
             }
             if (info.showJobsDropDownPanel()) {
               Plugin.get().panel(
                   GerritUiExtensionPoint.CHANGE_SCREEN_HEADER_RIGHT_OF_POP_DOWNS,
-                  new JobsDropDownPanel.Factory());
+                  new JobsDropDownPanel.Factory(),
+                  "VerifyStatusJobsDropDownPanel");
             }
           }