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

Unified Diff: client/dom/generated/src/wrapping/_InspectorFrontendHostWrappingImplementation.dart

Issue 9106002: Revert "Revert "Refresh dart:dom"" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fix dartc issues Created 8 years, 12 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: client/dom/generated/src/wrapping/_InspectorFrontendHostWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_InspectorFrontendHostWrappingImplementation.dart b/client/dom/generated/src/wrapping/_InspectorFrontendHostWrappingImplementation.dart
index 3e1a5fdd94a63e4949d49b8f9b694a97291d5970..9c29da540372522f632d7daf3479a1febcfdbe44 100644
--- a/client/dom/generated/src/wrapping/_InspectorFrontendHostWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_InspectorFrontendHostWrappingImplementation.dart
@@ -17,6 +17,11 @@ class _InspectorFrontendHostWrappingImplementation extends DOMWrapperBase implem
}
static void _bringToFront(receiver) native;
+ bool canSaveAs() {
+ return _canSaveAs(this);
+ }
+ static bool _canSaveAs(receiver) native;
+
void closeWindow() {
_closeWindow(this);
return;
@@ -29,12 +34,6 @@ class _InspectorFrontendHostWrappingImplementation extends DOMWrapperBase implem
}
static void _copyText(receiver, text) native;
- void disconnectFromBackend() {
- _disconnectFromBackend(this);
- return;
- }
- static void _disconnectFromBackend(receiver) native;
-
String hiddenPanels() {
return _hiddenPanels(this);
}
@@ -46,6 +45,11 @@ class _InspectorFrontendHostWrappingImplementation extends DOMWrapperBase implem
}
static void _inspectedURLChanged(receiver, newURL) native;
+ String loadResourceSynchronously(String url) {
+ return _loadResourceSynchronously(this, url);
+ }
+ static String _loadResourceSynchronously(receiver, url) native;
+
void loaded() {
_loaded(this);
return;
@@ -121,11 +125,11 @@ class _InspectorFrontendHostWrappingImplementation extends DOMWrapperBase implem
}
static void _setAttachedWindowHeight(receiver, height) native;
- void setExtensionAPI(String script) {
- _setExtensionAPI(this, script);
+ void setInjectedScriptForOrigin(String origin, String script) {
+ _setInjectedScriptForOrigin(this, origin, script);
return;
}
- static void _setExtensionAPI(receiver, script) native;
+ static void _setInjectedScriptForOrigin(receiver, origin, script) native;
void showContextMenu(MouseEvent event, Object items) {
_showContextMenu(this, event, items);

Powered by Google App Engine
This is Rietveld 408576698