| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 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 19 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 #ifndef DOMFileSystemBase_h | 31 #ifndef DOMFileSystemBase_h |
| 32 #define DOMFileSystemBase_h | 32 #define DOMFileSystemBase_h |
| 33 | 33 |
| 34 #include "core/fileapi/FileError.h" | 34 #include "core/fileapi/FileError.h" |
| 35 #include "modules/ModulesExport.h" | 35 #include "modules/ModulesExport.h" |
| 36 #include "modules/filesystem/FileSystemFlags.h" | 36 #include "modules/filesystem/FileSystemFlags.h" |
| 37 #include "platform/FileSystemType.h" | 37 #include "platform/FileSystemType.h" |
| 38 #include "platform/heap/Handle.h" | 38 #include "platform/heap/Handle.h" |
| 39 #include "platform/weborigin/KURL.h" | 39 #include "platform/weborigin/KURL.h" |
| 40 #include "wtf/text/WTFString.h" | 40 #include "platform/wtf/text/WTFString.h" |
| 41 | 41 |
| 42 namespace blink { | 42 namespace blink { |
| 43 class WebFileSystem; | 43 class WebFileSystem; |
| 44 } | 44 } |
| 45 | 45 |
| 46 namespace blink { | 46 namespace blink { |
| 47 | 47 |
| 48 class DirectoryReaderBase; | 48 class DirectoryReaderBase; |
| 49 class EntriesCallback; | 49 class EntriesCallback; |
| 50 class EntryBase; | 50 class EntryBase; |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 }; | 177 }; |
| 178 | 178 |
| 179 inline bool operator==(const DOMFileSystemBase& a, const DOMFileSystemBase& b) { | 179 inline bool operator==(const DOMFileSystemBase& a, const DOMFileSystemBase& b) { |
| 180 return a.name() == b.name() && a.GetType() == b.GetType() && | 180 return a.name() == b.name() && a.GetType() == b.GetType() && |
| 181 a.RootURL() == b.RootURL(); | 181 a.RootURL() == b.RootURL(); |
| 182 } | 182 } |
| 183 | 183 |
| 184 } // namespace blink | 184 } // namespace blink |
| 185 | 185 |
| 186 #endif // DOMFileSystemBase_h | 186 #endif // DOMFileSystemBase_h |
| OLD | NEW |