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

Unified Diff: sky/sdk/lib/rendering/sky_binding.dart

Issue 1183913006: Rename AppView to SkyBinding. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 6 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 | « sky/sdk/lib/app/view.dart ('k') | sky/sdk/lib/widgets/widget.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/sdk/lib/rendering/sky_binding.dart
diff --git a/sky/sdk/lib/app/view.dart b/sky/sdk/lib/rendering/sky_binding.dart
similarity index 93%
rename from sky/sdk/lib/app/view.dart
rename to sky/sdk/lib/rendering/sky_binding.dart
index d1316c043dfd17031796456f21b13bcd9e731621..56f306fae1bd3f5cd35c2d40f140ce00f5835976 100644
--- a/sky/sdk/lib/app/view.dart
+++ b/sky/sdk/lib/rendering/sky_binding.dart
@@ -4,9 +4,9 @@
import 'dart:sky' as sky;
-import '../rendering/box.dart';
-import '../rendering/object.dart';
-import 'scheduler.dart' as scheduler;
+import '../app/scheduler.dart' as scheduler;
+import 'box.dart';
+import 'object.dart';
class PointerState {
HitTestResult result;
@@ -17,9 +17,9 @@ class PointerState {
typedef void EventListener(sky.Event event);
-class AppView {
+class SkyBinding {
- AppView({ RenderBox root: null, RenderView renderViewOverride }) {
+ SkyBinding({ RenderBox root: null, RenderView renderViewOverride }) {
assert(_app == null);
_app = this;
@@ -41,7 +41,7 @@ class AppView {
assert(_app == this);
}
- static AppView _app; // used to enforce that we're a singleton
+ static SkyBinding _app; // used to enforce that we're a singleton
RenderView _renderView;
RenderView get renderView => _renderView;
« no previous file with comments | « sky/sdk/lib/app/view.dart ('k') | sky/sdk/lib/widgets/widget.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698