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