| 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 28 matching lines...) Expand all Loading... |
| 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 moveWindowBy(in float x, in float y); | 45 void moveWindowBy(in float x, in float y); |
| 46 void setInjectedScriptForOrigin(in DOMString origin, in DOMString script); | 46 void setInjectedScriptForOrigin(in DOMString origin, in DOMString script); |
| 47 | 47 |
| 48 DOMString localizedStringsURL(); | 48 DOMString localizedStringsURL(); |
| 49 DOMString hiddenPanels(); | |
| 50 | 49 |
| 51 void copyText(in DOMString text); | 50 void copyText(in DOMString text); |
| 52 void openInNewTab(in DOMString url); | 51 void openInNewTab(in DOMString url); |
| 53 boolean canSave(); | 52 boolean canSave(); |
| 54 void save(in DOMString url, in DOMString content, in boolean forceSaveAs); | 53 void save(in DOMString url, in DOMString content, in boolean forceSaveAs); |
| 55 void append(in DOMString url, in DOMString content); | 54 void append(in DOMString url, in DOMString content); |
| 56 void close(in DOMString url); | 55 void close(in DOMString url); |
| 57 | 56 |
| 58 boolean canInspectWorkers(); | |
| 59 | |
| 60 [Custom] DOMString platform(); | 57 [Custom] DOMString platform(); |
| 61 [Custom] DOMString port(); | 58 [Custom] DOMString port(); |
| 62 [Custom] void showContextMenu(in MouseEvent event, in any items); | 59 [Custom] void showContextMenu(in MouseEvent event, in any items); |
| 63 void sendMessageToBackend(in DOMString message); | 60 void sendMessageToBackend(in DOMString message); |
| 64 | 61 |
| 65 [Custom] void recordActionTaken(in unsigned long actionCode); | 62 [Custom] void recordActionTaken(in unsigned long actionCode); |
| 66 [Custom] void recordPanelShown(in unsigned long panelCode); | 63 [Custom] void recordPanelShown(in unsigned long panelCode); |
| 67 [Custom] void recordSettingChanged(in unsigned long settingChanged); | 64 [Custom] void recordSettingChanged(in unsigned long settingChanged); |
| 68 | 65 |
| 69 DOMString loadResourceSynchronously(in DOMString url); | 66 DOMString loadResourceSynchronously(in DOMString url); |
| 70 | 67 |
| 71 boolean supportsFileSystems(); | 68 boolean supportsFileSystems(); |
| 72 void requestFileSystems(); | 69 void requestFileSystems(); |
| 73 void addFileSystem(); | 70 void addFileSystem(); |
| 74 void removeFileSystem(in DOMString fileSystemPath); | 71 void removeFileSystem(in DOMString fileSystemPath); |
| 75 [Conditional=FILE_SYSTEM] DOMFileSystem isolatedFileSystem(in DOMString file
SystemId, in DOMString registeredName); | 72 [Conditional=FILE_SYSTEM] DOMFileSystem isolatedFileSystem(in DOMString file
SystemId, in DOMString registeredName); |
| 76 | 73 |
| 77 boolean isUnderTest(); | 74 boolean isUnderTest(); |
| 75 |
| 76 // Deprecated |
| 77 boolean canInspectWorkers(); |
| 78 boolean canSaveAs(); |
| 79 DOMString hiddenPanels(); |
| 78 }; | 80 }; |
| OLD | NEW |