summaryrefslogtreecommitdiffstats
path: root/shared/src/com/vaadin
diff options
context:
space:
mode:
Diffstat (limited to 'shared/src/com/vaadin')
-rw-r--r--shared/src/com/vaadin/shared/ApplicationConstants.java2
-rw-r--r--shared/src/com/vaadin/shared/ui/ui/DebugWindowServerRpc.java7
2 files changed, 7 insertions, 2 deletions
diff --git a/shared/src/com/vaadin/shared/ApplicationConstants.java b/shared/src/com/vaadin/shared/ApplicationConstants.java
index 6124b71d34..e51139dac7 100644
--- a/shared/src/com/vaadin/shared/ApplicationConstants.java
+++ b/shared/src/com/vaadin/shared/ApplicationConstants.java
@@ -39,8 +39,6 @@ public class ApplicationConstants implements Serializable {
+ "://";
public static final String UIDL_SECURITY_TOKEN_ID = "Vaadin-Security-Key";
- public static final String PARAM_ANALYZE_LAYOUTS = "analyzeLayouts";
-
@Deprecated
public static final String UPDATE_VARIABLE_INTERFACE = "v";
@Deprecated
diff --git a/shared/src/com/vaadin/shared/ui/ui/DebugWindowServerRpc.java b/shared/src/com/vaadin/shared/ui/ui/DebugWindowServerRpc.java
index ec8bc45b81..76e7d23379 100644
--- a/shared/src/com/vaadin/shared/ui/ui/DebugWindowServerRpc.java
+++ b/shared/src/com/vaadin/shared/ui/ui/DebugWindowServerRpc.java
@@ -40,4 +40,11 @@ public interface DebugWindowServerRpc extends ServerRpc {
**/
public void showServerDebugInfo(Connector connector);
+ /**
+ * Invokes the layout analyzer on the server
+ *
+ * @since 7.1
+ */
+ public void analyzeLayouts();
+
}