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

Side by Side Diff: Source/modules/filesystem/FileSystemCallbacks.cpp

Issue 68093002: Remove duplicated headers from modules/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 1 month 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
« no previous file with comments | « Source/modules/filesystem/EntrySync.cpp ('k') | Source/modules/filesystem/FileWriter.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 20 matching lines...) Expand all
31 #include "config.h" 31 #include "config.h"
32 #include "modules/filesystem/FileSystemCallbacks.h" 32 #include "modules/filesystem/FileSystemCallbacks.h"
33 33
34 #include "core/dom/ExecutionContext.h" 34 #include "core/dom/ExecutionContext.h"
35 #include "core/fileapi/FileError.h" 35 #include "core/fileapi/FileError.h"
36 #include "core/html/VoidCallback.h" 36 #include "core/html/VoidCallback.h"
37 #include "modules/filesystem/DOMFilePath.h" 37 #include "modules/filesystem/DOMFilePath.h"
38 #include "modules/filesystem/DOMFileSystemBase.h" 38 #include "modules/filesystem/DOMFileSystemBase.h"
39 #include "modules/filesystem/DirectoryEntry.h" 39 #include "modules/filesystem/DirectoryEntry.h"
40 #include "modules/filesystem/DirectoryReader.h" 40 #include "modules/filesystem/DirectoryReader.h"
41 #include "modules/filesystem/EntriesCallback.h"
42 #include "modules/filesystem/Entry.h" 41 #include "modules/filesystem/Entry.h"
43 #include "modules/filesystem/EntryCallback.h" 42 #include "modules/filesystem/EntryCallback.h"
44 #include "modules/filesystem/ErrorCallback.h" 43 #include "modules/filesystem/ErrorCallback.h"
45 #include "modules/filesystem/FileEntry.h" 44 #include "modules/filesystem/FileEntry.h"
46 #include "modules/filesystem/FileSystemCallback.h" 45 #include "modules/filesystem/FileSystemCallback.h"
47 #include "modules/filesystem/FileWriterBase.h" 46 #include "modules/filesystem/FileWriterBase.h"
48 #include "modules/filesystem/FileWriterBaseCallback.h" 47 #include "modules/filesystem/FileWriterBaseCallback.h"
49 #include "modules/filesystem/Metadata.h" 48 #include "modules/filesystem/Metadata.h"
50 #include "modules/filesystem/MetadataCallback.h" 49 #include "modules/filesystem/MetadataCallback.h"
51 #include "platform/FileMetadata.h" 50 #include "platform/FileMetadata.h"
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 } 282 }
284 283
285 void VoidCallbacks::didSucceed() 284 void VoidCallbacks::didSucceed()
286 { 285 {
287 if (m_successCallback) 286 if (m_successCallback)
288 m_successCallback->handleEvent(); 287 m_successCallback->handleEvent();
289 m_successCallback.clear(); 288 m_successCallback.clear();
290 } 289 }
291 290
292 } // namespace 291 } // namespace
OLDNEW
« no previous file with comments | « Source/modules/filesystem/EntrySync.cpp ('k') | Source/modules/filesystem/FileWriter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698