| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2011, 2012 Google 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 are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 #include "config.h" | 31 #include "config.h" |
| 32 #include "modules/filesystem/InspectorFileSystemAgent.h" | 32 #include "modules/filesystem/InspectorFileSystemAgent.h" |
| 33 | 33 |
| 34 #include "bindings/core/v8/ExceptionStatePlaceholder.h" | 34 #include "bindings/core/v8/ExceptionStatePlaceholder.h" |
| 35 #include "bindings/core/v8/UnionTypesCore.h" | 35 #include "bindings/core/v8/UnionTypesCore.h" |
| 36 #include "core/dom/DOMArrayBuffer.h" | 36 #include "core/dom/DOMArrayBuffer.h" |
| 37 #include "core/dom/DOMImplementation.h" | 37 #include "core/dom/DOMImplementation.h" |
| 38 #include "core/dom/Document.h" | 38 #include "core/dom/Document.h" |
| 39 #include "core/events/Event.h" | 39 #include "core/events/Event.h" |
| 40 #include "core/fileapi/File.h" | 40 #include "core/fileapi/File.h" |
| 41 #include "core/fileapi/FileCallback.h" |
| 41 #include "core/fileapi/FileError.h" | 42 #include "core/fileapi/FileError.h" |
| 42 #include "core/fileapi/FileReader.h" | 43 #include "core/fileapi/FileReader.h" |
| 43 #include "core/frame/LocalFrame.h" | 44 #include "core/frame/LocalFrame.h" |
| 44 #include "core/html/VoidCallback.h" | 45 #include "core/html/VoidCallback.h" |
| 45 #include "core/html/parser/TextResourceDecoder.h" | 46 #include "core/html/parser/TextResourceDecoder.h" |
| 46 #include "core/inspector/InspectorState.h" | 47 #include "core/inspector/InspectorState.h" |
| 47 #include "core/page/Page.h" | 48 #include "core/page/Page.h" |
| 48 #include "modules/filesystem/DOMFileSystem.h" | 49 #include "modules/filesystem/DOMFileSystem.h" |
| 49 #include "modules/filesystem/DirectoryEntry.h" | 50 #include "modules/filesystem/DirectoryEntry.h" |
| 50 #include "modules/filesystem/DirectoryReader.h" | 51 #include "modules/filesystem/DirectoryReader.h" |
| 51 #include "modules/filesystem/EntriesCallback.h" | 52 #include "modules/filesystem/EntriesCallback.h" |
| 52 #include "modules/filesystem/Entry.h" | 53 #include "modules/filesystem/Entry.h" |
| 53 #include "modules/filesystem/EntryCallback.h" | 54 #include "modules/filesystem/EntryCallback.h" |
| 54 #include "modules/filesystem/ErrorCallback.h" | 55 #include "modules/filesystem/ErrorCallback.h" |
| 55 #include "modules/filesystem/FileCallback.h" | |
| 56 #include "modules/filesystem/FileEntry.h" | 56 #include "modules/filesystem/FileEntry.h" |
| 57 #include "modules/filesystem/FileSystemCallbacks.h" | 57 #include "modules/filesystem/FileSystemCallbacks.h" |
| 58 #include "modules/filesystem/LocalFileSystem.h" | 58 #include "modules/filesystem/LocalFileSystem.h" |
| 59 #include "modules/filesystem/Metadata.h" | 59 #include "modules/filesystem/Metadata.h" |
| 60 #include "modules/filesystem/MetadataCallback.h" | 60 #include "modules/filesystem/MetadataCallback.h" |
| 61 #include "platform/MIMETypeRegistry.h" | 61 #include "platform/MIMETypeRegistry.h" |
| 62 #include "platform/heap/Handle.h" | 62 #include "platform/heap/Handle.h" |
| 63 #include "platform/weborigin/KURL.h" | 63 #include "platform/weborigin/KURL.h" |
| 64 #include "platform/weborigin/SecurityOrigin.h" | 64 #include "platform/weborigin/SecurityOrigin.h" |
| 65 #include "wtf/text/Base64.h" | 65 #include "wtf/text/Base64.h" |
| (...skipping 695 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 761 return 0; | 761 return 0; |
| 762 } | 762 } |
| 763 | 763 |
| 764 DEFINE_TRACE(InspectorFileSystemAgent) | 764 DEFINE_TRACE(InspectorFileSystemAgent) |
| 765 { | 765 { |
| 766 visitor->trace(m_page); | 766 visitor->trace(m_page); |
| 767 InspectorBaseAgent::trace(visitor); | 767 InspectorBaseAgent::trace(visitor); |
| 768 } | 768 } |
| 769 | 769 |
| 770 } // namespace blink | 770 } // namespace blink |
| OLD | NEW |