summaryrefslogtreecommitdiffstats
path: root/shared
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2013-06-04 23:13:29 +0300
committerVaadin Code Review <review@vaadin.com>2013-06-05 09:19:26 +0000
commit6d4582eea9e19518c7341ec65357b1d04a1a37c6 (patch)
treebfa7fb5609d488880e9bfd8a2d47e2465d12f832 /shared
parentaa99259eac14854e1e9a33fbbd429d0c5ffa9c52 (diff)
downloadvaadin-framework-6d4582eea9e19518c7341ec65357b1d04a1a37c6.tar.gz
vaadin-framework-6d4582eea9e19518c7341ec65357b1d04a1a37c6.zip
Change analyze layouts to use RPC (#11536)
Change-Id: I80d39e4ce4e0576b98ad095efce03740291d3de5
Diffstat (limited to 'shared')
-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();
+
}