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

Unified Diff: sky/sdk/lib/framework/app.dart

Issue 1165013003: Rename RenderNode to RenderObject. (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/BUILD.gn ('k') | sky/sdk/lib/framework/components2/scaffold.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/sdk/lib/framework/app.dart
diff --git a/sky/sdk/lib/framework/app.dart b/sky/sdk/lib/framework/app.dart
index f0dce51ce55edfb4e2f143bd55ae33d7a9ee5303..e8135bdedb62e4b90debf293107435317f6eb858 100644
--- a/sky/sdk/lib/framework/app.dart
+++ b/sky/sdk/lib/framework/app.dart
@@ -4,7 +4,7 @@
import 'dart:sky' as sky;
import 'rendering/box.dart';
-import 'rendering/node.dart';
+import 'rendering/object.dart';
import 'scheduler.dart' as scheduler;
class PointerState {
@@ -38,7 +38,7 @@ class AppView {
_renderView.child = value;
}
void _beginFrame(double timeStamp) {
- RenderNode.flushLayout();
+ RenderObject.flushLayout();
_renderView.paintFrame();
}
@@ -89,7 +89,7 @@ class AppView {
void dispatchEvent(sky.Event event, HitTestResult result) {
assert(result != null);
- for (RenderNode node in result.path.reversed)
+ for (RenderObject node in result.path.reversed)
node.handleEvent(event);
}
}
« no previous file with comments | « sky/sdk/BUILD.gn ('k') | sky/sdk/lib/framework/components2/scaffold.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698