Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(63)

Unified Diff: editor/tools/plugins/com.google.dart.eclipse.ui/src/com/google/dart/eclipse/ui/internal/DartPerspective.java

Issue 11364134: Merge libv1. (Closed) Base URL: https://dart.googlecode.com/svn/experimental/lib_v2/dart
Patch Set: Reupload due to error Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: editor/tools/plugins/com.google.dart.eclipse.ui/src/com/google/dart/eclipse/ui/internal/DartPerspective.java
diff --git a/editor/tools/plugins/com.google.dart.eclipse.ui/src/com/google/dart/eclipse/ui/internal/DartPerspective.java b/editor/tools/plugins/com.google.dart.eclipse.ui/src/com/google/dart/eclipse/ui/internal/DartPerspective.java
index 9f31dc5cae366443d403e00d711e20ba23344713..a98b9e0059b84746b2b1772d4a23b66b0fb0252b 100644
--- a/editor/tools/plugins/com.google.dart.eclipse.ui/src/com/google/dart/eclipse/ui/internal/DartPerspective.java
+++ b/editor/tools/plugins/com.google.dart.eclipse.ui/src/com/google/dart/eclipse/ui/internal/DartPerspective.java
@@ -37,6 +37,8 @@ public class DartPerspective implements IPerspectiveFactory {
private static final String WIZARD_NEW_FILE = "com.google.dart.eclipse.wizards.newFile"; //$NON-NLS-1$
private static final String WIZARD_NEW_FOLDER = "org.eclipse.ui.wizards.new.folder"; //$NON-NLS-1$
+ public static final String ID = "com.google.dart.tools.ui.DartPerspective"; //$NON-NLS-1$
+
public DartPerspective() {
}
@@ -52,8 +54,11 @@ public class DartPerspective implements IPerspectiveFactory {
topLeft.addPlaceholder(DartUI.ID_APPS_VIEW);
// Bottom left: Property Sheet view
- IPlaceholderFolderLayout propertiesfolder = layout.createPlaceholderFolder(BL,
- IPageLayout.BOTTOM, 0.50f, TL);
+ IPlaceholderFolderLayout propertiesfolder = layout.createPlaceholderFolder(
+ BL,
+ IPageLayout.BOTTOM,
+ 0.50f,
+ TL);
propertiesfolder.addPlaceholder(IPageLayout.ID_PROP_SHEET);
propertiesfolder.addPlaceholder(DartUI.ID_DARTUNIT_VIEW);

Powered by Google App Engine
This is Rietveld 408576698