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

Unified Diff: tools/dom/src/chrome/chrome.dart

Issue 12209045: Initial commit of generated dart:chrome app_window and app_runtime (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Ensuring latest copy is uploaded Created 7 years, 10 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
Index: tools/dom/src/chrome/chrome.dart
diff --git a/tools/dom/src/chrome/chrome.dart b/tools/dom/src/chrome/chrome.dart
index 97464a1742b16812456c479228a1f81ded0f74bc..303e2fc4dff24d334fdda8738ab5f318099ec2d3 100644
--- a/tools/dom/src/chrome/chrome.dart
+++ b/tools/dom/src/chrome/chrome.dart
@@ -14,8 +14,8 @@ class API_ChromeApp {
/*
* Members
*/
- API_ChromeAppWindow window;
- API_ChromeAppRuntime runtime;
+ API_app_window window;
+ API_app_runtime runtime;
/*
* Constructor
@@ -24,12 +24,12 @@ class API_ChromeApp {
var window_object = JS('', '#.window', this._jsObject);
if (window_object == null)
throw new UnsupportedError('Not supported by current browser.');
- window = new API_ChromeAppWindow(window_object);
+ window = new API_app_window(window_object);
var runtime_object = JS('', '#.runtime', this._jsObject);
if (runtime_object == null)
throw new UnsupportedError('Not supported by current browser.');
- runtime = new API_ChromeAppRuntime(runtime_object);
+ runtime = new API_app_runtime(runtime_object);
}
}
« no previous file with comments | « tools/dom/src/chrome/app_window.dart ('k') | tools/dom/src/chrome/custom_dart/app_window.AppWindow.contentWindow.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698