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

Issue 23704004: Make WebFileSystemCallbacks not self-destruct, deprecate AsyncFileSystem (Closed)

Created:
7 years, 3 months ago by kinuko
Modified:
7 years, 3 months ago
Reviewers:
abarth-chromium
CC:
blink-reviews, eae+blinkwatch, apavlov+blink_chromium.org, adamk+blink_chromium.org, aandrey+blink_chromium.org, do-not-use, Nils Barth (inactive), jamesr, caseq+blink_chromium.org, Nate Chapin, yurys+blink_chromium.org, marja+watch_chromium.org, dglazkov+blink, devtools-reviews_chromium.org, loislo+blink_chromium.org, lushnikov+blink_chromium.org, eustas+blink_chromium.org, tommyw+watchlist_chromium.org, paulirish+reviews_chromium.org, haraken, kojih, jsbell+bindings_chromium.org, alph+blink_chromium.org, vsevik+blink_chromium.org, pfeldman+blink_chromium.org, jeez, tzik, nhiroki
Visibility:
Public.

Description

Make WebFileSystemCallbacks not self-destruct, deprecate AsyncFileSystem The last piece of cleanup. Depends on chromium-side change (with ifdef): https://codereview.chromium.org/23762002/ BUG=257349 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=157378

Patch Set 1 #

Patch Set 2 : #

Total comments: 4

Patch Set 3 : #

Patch Set 4 : #

Total comments: 1

Patch Set 5 : use {set,unset}PendingActivity #

Patch Set 6 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+285 lines, -896 lines) Patch
M Source/bindings/v8/SerializedScriptValue.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/core.gypi View 1 2 3 4 5 2 chunks +1 line, -1 line 0 comments Download
M Source/core/inspector/InspectorFileSystemAgent.cpp View 1 2 3 5 chunks +6 lines, -6 lines 0 comments Download
M Source/core/inspector/InspectorFrontendHost.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/platform/AsyncFileSystemCallbacks.h View 1 2 chunks +14 lines, -3 lines 0 comments Download
A + Source/core/platform/chromium/support/WebFileSystemCallbacks.cpp View 1 3 chunks +61 lines, -39 lines 0 comments Download
M Source/modules/filesystem/DOMFileSystem.h View 1 2 3 4 5 2 chunks +5 lines, -6 lines 0 comments Download
M Source/modules/filesystem/DOMFileSystem.cpp View 1 2 3 4 5 9 chunks +18 lines, -25 lines 0 comments Download
M Source/modules/filesystem/DOMFileSystemBase.h View 1 2 3 6 chunks +15 lines, -8 lines 0 comments Download
M Source/modules/filesystem/DOMFileSystemBase.cpp View 1 2 3 12 chunks +28 lines, -21 lines 0 comments Download
M Source/modules/filesystem/DOMFileSystemSync.h View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/modules/filesystem/DOMFileSystemSync.cpp View 6 chunks +10 lines, -17 lines 0 comments Download
M Source/modules/filesystem/DOMWindowFileSystem.cpp View 1 chunk +0 lines, -1 line 0 comments Download
M Source/modules/filesystem/DataTransferItemFileSystem.cpp View 1 chunk +0 lines, -1 line 0 comments Download
M Source/modules/filesystem/DirectoryEntrySync.cpp View 3 chunks +3 lines, -3 lines 0 comments Download
M Source/modules/filesystem/DirectoryReaderSync.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/modules/filesystem/Entry.cpp View 1 chunk +0 lines, -1 line 0 comments Download
M Source/modules/filesystem/EntryBase.cpp View 1 chunk +0 lines, -1 line 0 comments Download
M Source/modules/filesystem/EntrySync.cpp View 4 chunks +4 lines, -4 lines 0 comments Download
M Source/modules/filesystem/FileSystemCallbacks.h View 1 2 3 5 chunks +13 lines, -24 lines 0 comments Download
M Source/modules/filesystem/FileSystemCallbacks.cpp View 1 2 3 9 chunks +33 lines, -33 lines 0 comments Download
M Source/modules/filesystem/SyncCallbackHelper.h View 4 chunks +9 lines, -26 lines 0 comments Download
M Source/modules/filesystem/WorkerGlobalScopeFileSystem.cpp View 3 chunks +2 lines, -3 lines 0 comments Download
D Source/web/AsyncFileSystemChromium.h View 1 chunk +0 lines, -74 lines 0 comments Download
D Source/web/AsyncFileSystemChromium.cpp View 1 chunk +0 lines, -124 lines 0 comments Download
M Source/web/LocalFileSystemClient.cpp View 2 chunks +2 lines, -5 lines 0 comments Download
D Source/web/WebFileSystemCallbacksImpl.h View 1 chunk +0 lines, -78 lines 0 comments Download
D Source/web/WebFileSystemCallbacksImpl.cpp View 1 chunk +0 lines, -129 lines 0 comments Download
M Source/web/WebFrameImpl.cpp View 1 2 3 4 chunks +3 lines, -5 lines 0 comments Download
M Source/web/WorkerFileSystemClient.cpp View 2 chunks +1 line, -3 lines 0 comments Download
M Source/web/web.gypi View 1 2 2 chunks +0 lines, -4 lines 0 comments Download
M public/platform/WebFileSystem.h View 7 chunks +17 lines, -18 lines 0 comments Download
M public/platform/WebFileSystemCallbacks.h View 1 2 1 chunk +34 lines, -10 lines 0 comments Download
D public/web/WebFileError.h View 1 1 chunk +0 lines, -31 lines 0 comments Download
D public/web/WebFileInfo.h View 1 1 chunk +0 lines, -31 lines 0 comments Download
D public/web/WebFileSystemCallbacks.h View 1 1 chunk +0 lines, -31 lines 0 comments Download
D public/web/WebFileSystemEntry.h View 1 1 chunk +0 lines, -31 lines 0 comments Download
D public/web/WebFileUtilities.h View 1 1 chunk +0 lines, -31 lines 0 comments Download
D public/web/WebFileWriter.h View 1 1 chunk +0 lines, -31 lines 0 comments Download
D public/web/WebFileWriterClient.h View 1 1 chunk +0 lines, -31 lines 0 comments Download

Messages

Total messages: 11 (0 generated)
kinuko
The last piece in this series. Can you review?
7 years, 3 months ago (2013-08-30 08:08:13 UTC) #1
abarth-chromium
LGTM My one concern is that I don't think your change to hasPendingActivity is correct. ...
7 years, 3 months ago (2013-08-30 16:18:25 UTC) #2
kinuko
https://codereview.chromium.org/23704004/diff/6001/Source/modules/filesystem/DOMFileSystem.cpp File Source/modules/filesystem/DOMFileSystem.cpp (right): https://codereview.chromium.org/23704004/diff/6001/Source/modules/filesystem/DOMFileSystem.cpp#newcode107 Source/modules/filesystem/DOMFileSystem.cpp:107: return false; On 2013/08/30 16:18:25, abarth wrote: > This ...
7 years, 3 months ago (2013-09-03 09:32:48 UTC) #3
abarth-chromium
On 2013/09/03 09:32:48, kinuko wrote: > https://codereview.chromium.org/23704004/diff/6001/Source/modules/filesystem/DOMFileSystem.cpp > File Source/modules/filesystem/DOMFileSystem.cpp (right): > > https://codereview.chromium.org/23704004/diff/6001/Source/modules/filesystem/DOMFileSystem.cpp#newcode107 > ...
7 years, 3 months ago (2013-09-03 16:21:02 UTC) #4
kinuko
On 2013/09/03 16:21:02, abarth wrote: > On 2013/09/03 09:32:48, kinuko wrote: > > > https://codereview.chromium.org/23704004/diff/6001/Source/modules/filesystem/DOMFileSystem.cpp ...
7 years, 3 months ago (2013-09-03 22:21:19 UTC) #5
kinuko
On 2013/09/03 22:21:19, kinuko wrote: > On 2013/09/03 16:21:02, abarth wrote: > > On 2013/09/03 ...
7 years, 3 months ago (2013-09-05 11:16:56 UTC) #6
abarth-chromium
In any case, LGTM. https://codereview.chromium.org/23704004/diff/21001/Source/modules/filesystem/DOMFileSystem.cpp File Source/modules/filesystem/DOMFileSystem.cpp (right): https://codereview.chromium.org/23704004/diff/21001/Source/modules/filesystem/DOMFileSystem.cpp#newcode110 Source/modules/filesystem/DOMFileSystem.cpp:110: --m_pendingCallbacks; You don't need to ...
7 years, 3 months ago (2013-09-06 04:56:31 UTC) #7
kinuko
On 2013/09/06 04:56:31, abarth wrote: > In any case, LGTM. > > https://codereview.chromium.org/23704004/diff/21001/Source/modules/filesystem/DOMFileSystem.cpp > File ...
7 years, 3 months ago (2013-09-06 05:44:19 UTC) #8
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/kinuko@chromium.org/23704004/46001
7 years, 3 months ago (2013-09-06 15:48:42 UTC) #9
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/kinuko@chromium.org/23704004/51001
7 years, 3 months ago (2013-09-06 16:30:12 UTC) #10
commit-bot: I haz the power
7 years, 3 months ago (2013-09-06 17:53:46 UTC) #11
Message was sent while issue was closed.
Change committed as 157378

Powered by Google App Engine
This is Rietveld 408576698