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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 [Custom] void recordSettingChanged(unsigned long settingChanged); | 59 [Custom] void recordSettingChanged(unsigned long settingChanged); |
60 | 60 |
61 DOMString loadResourceSynchronously(DOMString url); | 61 DOMString loadResourceSynchronously(DOMString url); |
62 DOMString getSelectionBackgroundColor(); | 62 DOMString getSelectionBackgroundColor(); |
63 DOMString getSelectionForegroundColor(); | 63 DOMString getSelectionForegroundColor(); |
64 | 64 |
65 void requestFileSystems(); | 65 void requestFileSystems(); |
66 void addFileSystem(); | 66 void addFileSystem(); |
67 void removeFileSystem(DOMString fileSystemPath); | 67 void removeFileSystem(DOMString fileSystemPath); |
68 DOMFileSystem isolatedFileSystem(DOMString fileSystemId, DOMString registere
dName); | 68 DOMFileSystem isolatedFileSystem(DOMString fileSystemId, DOMString registere
dName); |
| 69 void indexPath(long requestId, DOMString fileSystemPath); |
| 70 void stopIndexing(long requestId); |
| 71 void searchInPath(long requestId, DOMString fileSystemPath, DOMString query)
; |
69 | 72 |
70 boolean isUnderTest(); | 73 boolean isUnderTest(); |
71 | 74 |
72 // Deprecated | 75 // Deprecated |
73 boolean canInspectWorkers(); | 76 boolean canInspectWorkers(); |
74 boolean canSaveAs(); | 77 boolean canSaveAs(); |
75 boolean canSave(); | 78 boolean canSave(); |
76 boolean supportsFileSystems(); | 79 boolean supportsFileSystems(); |
77 void loaded(); | 80 void loaded(); |
78 DOMString hiddenPanels(); | 81 DOMString hiddenPanels(); |
79 DOMString localizedStringsURL(); | 82 DOMString localizedStringsURL(); |
80 }; | 83 }; |
OLD | NEW |