| 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
|
|
|