| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 }; |
| OLD | NEW |