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

Side by Side Diff: client/dom/generated/src/interface/InspectorFrontendHost.dart

Issue 9323028: Support 'Conditional' idl attribute. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 // WARNING: Do not edit - generated code.
6
7 interface InspectorFrontendHost {
8
9 void bringToFront();
10
11 bool canSaveAs();
12
13 void closeWindow();
14
15 void copyText(String text);
16
17 String hiddenPanels();
18
19 void inspectedURLChanged(String newURL);
20
21 String loadResourceSynchronously(String url);
22
23 void loaded();
24
25 String localizedStringsURL();
26
27 void moveWindowBy(num x, num y);
28
29 void openInNewTab(String url);
30
31 String platform();
32
33 String port();
34
35 void recordActionTaken(int actionCode);
36
37 void recordPanelShown(int panelCode);
38
39 void recordSettingChanged(int settingChanged);
40
41 void requestAttachWindow();
42
43 void requestDetachWindow();
44
45 void requestSetDockSide(String side);
46
47 void saveAs(String fileName, String content);
48
49 void sendMessageToBackend(String message);
50
51 void setAttachedWindowHeight(int height);
52
53 void setInjectedScriptForOrigin(String origin, String script);
54
55 void showContextMenu(MouseEvent event, Object items);
56 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698