Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(511)

Side by Side Diff: third_party/WebKit/Source/modules/filesystem/LocalFileSystem.h

Issue 2297043002: Web expose FileSystemFileEntry, FileSystemDirectoryEntry and friends (Closed)
Patch Set: Rebased Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 26 matching lines...) Expand all
37 #include "platform/Supplementable.h" 37 #include "platform/Supplementable.h"
38 #include "platform/heap/Handle.h" 38 #include "platform/heap/Handle.h"
39 #include "wtf/Forward.h" 39 #include "wtf/Forward.h"
40 #include "wtf/Functional.h" 40 #include "wtf/Functional.h"
41 #include <memory> 41 #include <memory>
42 42
43 namespace blink { 43 namespace blink {
44 44
45 class AsyncFileSystemCallbacks; 45 class AsyncFileSystemCallbacks;
46 class CallbackWrapper; 46 class CallbackWrapper;
47 class ExecutionContext;
47 class FileSystemClient; 48 class FileSystemClient;
48 class ExecutionContext;
49 class KURL; 49 class KURL;
50 class WebFileSystem; 50 class WebFileSystem;
51 51
52 class LocalFileSystem final : public GarbageCollectedFinalized<LocalFileSystem>, 52 class LocalFileSystem final : public GarbageCollectedFinalized<LocalFileSystem>,
53 public Supplement<LocalFrame>, 53 public Supplement<LocalFrame>,
54 public Supplement<WorkerClients> { 54 public Supplement<WorkerClients> {
55 USING_GARBAGE_COLLECTED_MIXIN(LocalFileSystem); 55 USING_GARBAGE_COLLECTED_MIXIN(LocalFileSystem);
56 WTF_MAKE_NONCOPYABLE(LocalFileSystem); 56 WTF_MAKE_NONCOPYABLE(LocalFileSystem);
57 57
58 public: 58 public:
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 void deleteFileSystemInternal(ExecutionContext*, 94 void deleteFileSystemInternal(ExecutionContext*,
95 FileSystemType, 95 FileSystemType,
96 CallbackWrapper*); 96 CallbackWrapper*);
97 97
98 std::unique_ptr<FileSystemClient> m_client; 98 std::unique_ptr<FileSystemClient> m_client;
99 }; 99 };
100 100
101 } // namespace blink 101 } // namespace blink
102 102
103 #endif // LocalFileSystem_h 103 #endif // LocalFileSystem_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698