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

Side by Side Diff: inspector/InspectorFrontendHost.idl

Issue 13601015: Roll Blink IDLs forward. (Closed) Base URL: http://dart.googlecode.com/svn/third_party/WebCore/
Patch Set: Created 7 years, 8 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
« no previous file with comments | « inspector/Inspector.json ('k') | inspector/compile-front-end.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2008 Matt Lilek <webkit@mattlilek.com> 3 * Copyright (C) 2008 Matt Lilek <webkit@mattlilek.com>
4 * Copyright (C) 2009 Google Inc. All rights reserved. 4 * Copyright (C) 2009 Google Inc. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are 7 * modification, are permitted provided that the following conditions are
8 * met: 8 * met:
9 * 9 *
10 * * Redistributions of source code must retain the above copyright 10 * * Redistributions of source code must retain the above copyright
(...skipping 24 matching lines...) Expand all
35 ImplementationLacksVTable 35 ImplementationLacksVTable
36 ] interface InspectorFrontendHost { 36 ] interface InspectorFrontendHost {
37 void loaded(); 37 void loaded();
38 void closeWindow(); 38 void closeWindow();
39 void bringToFront(); 39 void bringToFront();
40 void setZoomFactor(in float zoom); 40 void setZoomFactor(in float zoom);
41 void inspectedURLChanged(in DOMString newURL); 41 void inspectedURLChanged(in DOMString newURL);
42 42
43 void requestSetDockSide(in DOMString side); 43 void requestSetDockSide(in DOMString side);
44 void setAttachedWindowHeight(in unsigned long height); 44 void setAttachedWindowHeight(in unsigned long height);
45 void setAttachedWindowWidth(in unsigned long width);
45 void moveWindowBy(in float x, in float y); 46 void moveWindowBy(in float x, in float y);
46 void setInjectedScriptForOrigin(in DOMString origin, in DOMString script); 47 void setInjectedScriptForOrigin(in DOMString origin, in DOMString script);
47 48
48 DOMString localizedStringsURL(); 49 DOMString localizedStringsURL();
49 50
50 void copyText(in DOMString text); 51 void copyText(in DOMString text);
51 void openInNewTab(in DOMString url); 52 void openInNewTab(in DOMString url);
52 boolean canSave(); 53 boolean canSave();
53 void save(in DOMString url, in DOMString content, in boolean forceSaveAs); 54 void save(in DOMString url, in DOMString content, in boolean forceSaveAs);
54 void append(in DOMString url, in DOMString content); 55 void append(in DOMString url, in DOMString content);
(...skipping 16 matching lines...) Expand all
71 void removeFileSystem(in DOMString fileSystemPath); 72 void removeFileSystem(in DOMString fileSystemPath);
72 [Conditional=FILE_SYSTEM] DOMFileSystem isolatedFileSystem(in DOMString file SystemId, in DOMString registeredName); 73 [Conditional=FILE_SYSTEM] DOMFileSystem isolatedFileSystem(in DOMString file SystemId, in DOMString registeredName);
73 74
74 boolean isUnderTest(); 75 boolean isUnderTest();
75 76
76 // Deprecated 77 // Deprecated
77 boolean canInspectWorkers(); 78 boolean canInspectWorkers();
78 boolean canSaveAs(); 79 boolean canSaveAs();
79 DOMString hiddenPanels(); 80 DOMString hiddenPanels();
80 }; 81 };
OLDNEW
« no previous file with comments | « inspector/Inspector.json ('k') | inspector/compile-front-end.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698