| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 [Custom] void recordActionTaken(in unsigned long actionCode); | 63 [Custom] void recordActionTaken(in unsigned long actionCode); |
| 64 [Custom] void recordPanelShown(in unsigned long panelCode); | 64 [Custom] void recordPanelShown(in unsigned long panelCode); |
| 65 [Custom] void recordSettingChanged(in unsigned long settingChanged); | 65 [Custom] void recordSettingChanged(in unsigned long settingChanged); |
| 66 | 66 |
| 67 DOMString loadResourceSynchronously(in DOMString url); | 67 DOMString loadResourceSynchronously(in DOMString url); |
| 68 | 68 |
| 69 boolean supportsFileSystems(); | 69 boolean supportsFileSystems(); |
| 70 void requestFileSystems(); | 70 void requestFileSystems(); |
| 71 void addFileSystem(); | 71 void addFileSystem(); |
| 72 void removeFileSystem(in DOMString fileSystemPath); | 72 void removeFileSystem(in DOMString fileSystemPath); |
| 73 [Conditional=FILE_SYSTEM] DOMFileSystem isolatedFileSystem(in DOMString file
SystemId, in DOMString registeredName); | 73 DOMFileSystem isolatedFileSystem(in DOMString fileSystemId, in DOMString reg
isteredName); |
| 74 | 74 |
| 75 boolean isUnderTest(); | 75 boolean isUnderTest(); |
| 76 | 76 |
| 77 // Deprecated | 77 // Deprecated |
| 78 boolean canInspectWorkers(); | 78 boolean canInspectWorkers(); |
| 79 boolean canSaveAs(); | 79 boolean canSaveAs(); |
| 80 DOMString hiddenPanels(); | 80 DOMString hiddenPanels(); |
| 81 }; | 81 }; |
| OLD | NEW |