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

Unified Diff: pkg/browser/lib/interop.js

Issue 32843006: Fix missing declaration for local variable in interop.js (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/browser/lib/interop.js
diff --git a/pkg/browser/lib/interop.js b/pkg/browser/lib/interop.js
index 71af132522e77c5ef3f49b7b27e40535760acc3d..1caeb5a209937eb0967c211bd0bc1e4a8a59926b 100644
--- a/pkg/browser/lib/interop.js
+++ b/pkg/browser/lib/interop.js
@@ -457,7 +457,7 @@ function DartObject(o) {
if (proxiedObjectTable.contains(id)) {
return proxiedObjectTable.get(id);
}
- proxy = new DartObject(id, port);
+ var proxy = new DartObject(id, port);
proxiedObjectTable.add(proxy, id);
return proxy;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698