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

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

Issue 2748953002: Remove createSameThreadTask() and deprecate createCrossThreadTask() (Closed)
Patch Set: Created 3 years, 9 months 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 17 matching lines...) Expand all
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #ifndef DOMFileSystem_h 31 #ifndef DOMFileSystem_h
32 #define DOMFileSystem_h 32 #define DOMFileSystem_h
33 33
34 #include "bindings/core/v8/ActiveScriptWrappable.h" 34 #include "bindings/core/v8/ActiveScriptWrappable.h"
35 #include "bindings/core/v8/ScriptWrappable.h" 35 #include "bindings/core/v8/ScriptWrappable.h"
36 #include "core/dom/ContextLifecycleObserver.h" 36 #include "core/dom/ContextLifecycleObserver.h"
37 #include "core/dom/ExecutionContext.h" 37 #include "core/dom/ExecutionContext.h"
38 #include "core/dom/ExecutionContextTask.h"
39 #include "core/dom/TaskRunnerHelper.h" 38 #include "core/dom/TaskRunnerHelper.h"
40 #include "modules/ModulesExport.h" 39 #include "modules/ModulesExport.h"
41 #include "modules/filesystem/DOMFileSystemBase.h" 40 #include "modules/filesystem/DOMFileSystemBase.h"
42 #include "modules/filesystem/EntriesCallback.h" 41 #include "modules/filesystem/EntriesCallback.h"
43 #include "platform/heap/Handle.h" 42 #include "platform/heap/Handle.h"
44 #include "public/platform/WebTraceLocation.h" 43 #include "public/platform/WebTraceLocation.h"
45 #include "wtf/PtrUtil.h" 44 #include "wtf/PtrUtil.h"
46 45
47 namespace blink { 46 namespace blink {
48 47
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 100
102 static String taskNameForInstrumentation() { return "FileSystem"; } 101 static String taskNameForInstrumentation() { return "FileSystem"; }
103 102
104 int m_numberOfPendingCallbacks; 103 int m_numberOfPendingCallbacks;
105 Member<DirectoryEntry> m_rootEntry; 104 Member<DirectoryEntry> m_rootEntry;
106 }; 105 };
107 106
108 } // namespace blink 107 } // namespace blink
109 108
110 #endif // DOMFileSystem_h 109 #endif // DOMFileSystem_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698