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

Unified Diff: dart/samples/ui_lib/view/view.dart

Issue 11233061: Revert "Parts must start with 'part of'" and "Attempt to fix VM build" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 2 months 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
« no previous file with comments | « dart/samples/ui_lib/view/SliderMenu.dart ('k') | dart/tests/co19/co19-compiler.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/samples/ui_lib/view/view.dart
diff --git a/dart/samples/ui_lib/view/view.dart b/dart/samples/ui_lib/view/view.dart
index bcc0b4f81ded52bd0caaf74cc85e54eb7bf96321..52f0765251280d3e1003cbd07a7fa663a02b43c3 100644
--- a/dart/samples/ui_lib/view/view.dart
+++ b/dart/samples/ui_lib/view/view.dart
@@ -2,21 +2,21 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-library view;
+#library("view");
-import 'dart:html';
-import 'dart:math' as Math;
+#import('dart:html');
+#import('dart:math', prefix: 'Math');
-import '../base/base.dart';
-import '../observable/observable.dart';
-import '../touch/touch.dart';
-import '../layout/layout.dart';
+#import('../base/base.dart');
+#import('../observable/observable.dart');
+#import('../touch/touch.dart');
+#import('../layout/layout.dart');
-part 'CompositeView.dart';
-part 'ConveyorView.dart';
-part 'MeasureText.dart';
-part 'PagedViews.dart';
-part 'SliderMenu.dart';
+#source('CompositeView.dart');
+#source('ConveyorView.dart');
+#source('MeasureText.dart');
+#source('PagedViews.dart');
+#source('SliderMenu.dart');
// TODO(rnystrom): Note! This class is undergoing heavy construction. It will
« no previous file with comments | « dart/samples/ui_lib/view/SliderMenu.dart ('k') | dart/tests/co19/co19-compiler.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698