| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 void asFilenames(Vector<String>&) const; | 70 void asFilenames(Vector<String>&) const; |
| 71 Color asColor() const; | 71 Color asColor() const; |
| 72 PassRefPtr<DocumentFragment> asFragment(Frame*, PassRefPtr<Range> context, | 72 PassRefPtr<DocumentFragment> asFragment(Frame*, PassRefPtr<Range> context, |
| 73 bool allowPlainText, bool& chosePlai
nText) const; | 73 bool allowPlainText, bool& chosePlai
nText) const; |
| 74 bool canSmartReplace() const; | 74 bool canSmartReplace() const; |
| 75 bool containsColor() const; | 75 bool containsColor() const; |
| 76 bool containsFiles() const; | 76 bool containsFiles() const; |
| 77 unsigned numberOfFiles() const; | 77 unsigned numberOfFiles() const; |
| 78 int modifierKeyState() const; | 78 int modifierKeyState() const; |
| 79 | 79 |
| 80 #if ENABLE(FILE_SYSTEM) | |
| 81 String droppedFileSystemId() const; | 80 String droppedFileSystemId() const; |
| 82 #endif | |
| 83 | 81 |
| 84 private: | 82 private: |
| 85 IntPoint m_clientPosition; | 83 IntPoint m_clientPosition; |
| 86 IntPoint m_globalPosition; | 84 IntPoint m_globalPosition; |
| 87 DragDataRef m_platformDragData; | 85 DragDataRef m_platformDragData; |
| 88 DragOperation m_draggingSourceOperationMask; | 86 DragOperation m_draggingSourceOperationMask; |
| 89 DragApplicationFlags m_applicationFlags; | 87 DragApplicationFlags m_applicationFlags; |
| 90 }; | 88 }; |
| 91 | 89 |
| 92 } | 90 } |
| 93 | 91 |
| 94 #endif // !DragData_h | 92 #endif // !DragData_h |
| OLD | NEW |