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

Issue 9558006: Rename content/{common,browser}/file_system to fileapi and move blob stuff into it. (Closed)

Created:
8 years, 9 months ago by tzik
Modified:
7 years, 10 months ago
Reviewers:
michaeln, kinuko, jam
CC:
chromium-reviews, joi+watch-content_chromium.org, darin-cc_chromium.org, kinuko+watch
Visibility:
Public.

Description

Rename content/{common,browser}/file_system to fileapi and move blob stuff into it. This patch: - renames content/{common,browser]/file_system to content/{common,browser}/fileapi, - moves content/browser/chrome_blob_storage_context.{h,cc} into content/browser/fileapi, - moves content/common/webblob_registry_impl.{h,cc} into content/common/fileapi, - moves content/common/{file_system_messages.h,webblob_messages.h} into content/common/fileapi, - adds jianli@ to OWNERS of content/{browser,common}/fileapi, - rename FileAndBlobMessageFilter to FileAPIMessageFilter. BUG=115603 TEST='Build should finish successfully' Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=124439

Patch Set 1 #

Patch Set 2 : fix include guard #

Patch Set 3 : Build fix and rebase #

Total comments: 3

Patch Set 4 : s/FileAndBlobMessageFilter/FileAPIMessageFilter/g #

Total comments: 2

Patch Set 5 : s/file_api/fileapi/g #

Patch Set 6 : rebase #

Total comments: 1
Unified diffs Side-by-side diffs Delta from patch set Stats (+158 lines, -2485 lines) Patch
M chrome/chrome_tests.gypi View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M content/browser/browser_context.cc View 1 chunk +1 line, -1 line 0 comments Download
D content/browser/chrome_blob_storage_context.h View 1 chunk +0 lines, -62 lines 0 comments Download
D content/browser/chrome_blob_storage_context.cc View 1 chunk +0 lines, -55 lines 0 comments Download
D content/browser/file_system/OWNERS View 1 chunk +0 lines, -3 lines 0 comments Download
D content/browser/file_system/browser_file_system_helper.h View 1 chunk +0 lines, -26 lines 0 comments Download
D content/browser/file_system/browser_file_system_helper.cc View 1 chunk +0 lines, -53 lines 0 comments Download
D content/browser/file_system/file_and_blob_message_filter.h View 1 2 3 4 5 1 chunk +0 lines, -181 lines 0 comments Download
D content/browser/file_system/file_and_blob_message_filter.cc View 1 2 3 4 5 1 chunk +0 lines, -662 lines 0 comments Download
D content/browser/file_system/file_system_browsertest.cc View 1 chunk +0 lines, -93 lines 0 comments Download
A + content/browser/fileapi/OWNERS View 1 2 1 chunk +1 line, -0 lines 0 comments Download
A + content/browser/fileapi/browser_file_system_helper.h View 1 2 chunks +3 lines, -3 lines 0 comments Download
A + content/browser/fileapi/browser_file_system_helper.cc View 1 chunk +1 line, -1 line 1 comment Download
A + content/browser/fileapi/chrome_blob_storage_context.h View 1 2 chunks +3 lines, -3 lines 0 comments Download
A + content/browser/fileapi/chrome_blob_storage_context.cc View 1 chunk +1 line, -1 line 0 comments Download
A + content/browser/fileapi/file_system_browsertest.cc View 0 chunks +-1 lines, --1 lines 0 comments Download
A + content/browser/fileapi/fileapi_message_filter.h View 1 2 3 4 5 3 chunks +8 lines, -8 lines 0 comments Download
A + content/browser/fileapi/fileapi_message_filter.cc View 1 2 3 4 5 37 chunks +73 lines, -73 lines 0 comments Download
M content/browser/renderer_host/render_process_host_impl.cc View 1 2 3 4 2 chunks +4 lines, -4 lines 0 comments Download
M content/browser/renderer_host/resource_dispatcher_host.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M content/browser/resource_context_impl.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M content/browser/worker_host/worker_process_host.cc View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M content/common/child_thread.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M content/common/content_message_generator.h View 2 chunks +2 lines, -2 lines 0 comments Download
D content/common/file_system/OWNERS View 1 chunk +0 lines, -3 lines 0 comments Download
D content/common/file_system/file_system_dispatcher.h View 1 chunk +0 lines, -114 lines 0 comments Download
D content/common/file_system/file_system_dispatcher.cc View 1 chunk +0 lines, -314 lines 0 comments Download
D content/common/file_system/webfilesystem_callback_dispatcher.h View 1 chunk +0 lines, -41 lines 0 comments Download
D content/common/file_system/webfilesystem_callback_dispatcher.cc View 1 chunk +0 lines, -74 lines 0 comments Download
D content/common/file_system/webfilesystem_impl.h View 1 chunk +0 lines, -66 lines 0 comments Download
D content/common/file_system/webfilesystem_impl.cc View 1 chunk +0 lines, -129 lines 0 comments Download
D content/common/file_system/webfilewriter_impl.h View 1 chunk +0 lines, -31 lines 0 comments Download
D content/common/file_system/webfilewriter_impl.cc View 1 chunk +0 lines, -80 lines 0 comments Download
D content/common/file_system_messages.h View 1 chunk +0 lines, -153 lines 0 comments Download
A + content/common/fileapi/OWNERS View 1 2 1 chunk +1 line, -0 lines 0 comments Download
A + content/common/fileapi/file_system_dispatcher.h View 1 2 chunks +3 lines, -3 lines 0 comments Download
A + content/common/fileapi/file_system_dispatcher.cc View 1 chunk +2 lines, -2 lines 0 comments Download
A + content/common/fileapi/file_system_messages.h View 0 chunks +-1 lines, --1 lines 0 comments Download
A + content/common/fileapi/webblob_messages.h View 0 chunks +-1 lines, --1 lines 0 comments Download
A + content/common/fileapi/webblobregistry_impl.h View 1 2 chunks +3 lines, -3 lines 0 comments Download
A + content/common/fileapi/webblobregistry_impl.cc View 1 chunk +2 lines, -2 lines 0 comments Download
A + content/common/fileapi/webfilesystem_callback_dispatcher.h View 1 2 chunks +3 lines, -3 lines 0 comments Download
A + content/common/fileapi/webfilesystem_callback_dispatcher.cc View 1 chunk +1 line, -1 line 0 comments Download
A + content/common/fileapi/webfilesystem_impl.h View 1 2 chunks +3 lines, -3 lines 0 comments Download
A + content/common/fileapi/webfilesystem_impl.cc View 1 chunk +4 lines, -4 lines 0 comments Download
A + content/common/fileapi/webfilewriter_impl.h View 1 2 chunks +3 lines, -3 lines 0 comments Download
A + content/common/fileapi/webfilewriter_impl.cc View 1 chunk +2 lines, -2 lines 0 comments Download
D content/common/webblob_messages.h View 1 chunk +0 lines, -57 lines 0 comments Download
D content/common/webblobregistry_impl.h View 1 chunk +0 lines, -34 lines 0 comments Download
D content/common/webblobregistry_impl.cc View 1 chunk +0 lines, -98 lines 0 comments Download
M content/content_browser.gypi View 1 2 3 4 5 2 chunks +6 lines, -6 lines 0 comments Download
M content/content_common.gypi View 2 chunks +12 lines, -12 lines 0 comments Download
M content/renderer/pepper/pepper_plugin_delegate_impl.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M content/renderer/render_view_impl.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M content/renderer/renderer_webkitplatformsupport_impl.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M content/worker/websharedworker_stub.cc View 1 chunk +1 line, -1 line 0 comments Download
M content/worker/websharedworkerclient_proxy.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M content/worker/worker_webkitplatformsupport_impl.cc View 1 chunk +2 lines, -2 lines 0 comments Download

Messages

Total messages: 15 (0 generated)
michaeln
you get to rebase this time around :)
8 years, 9 months ago (2012-02-29 23:02:22 UTC) #1
tzik
8 years, 9 months ago (2012-03-01 00:40:16 UTC) #2
kinuko
lgtm
8 years, 9 months ago (2012-03-01 01:10:33 UTC) #3
jam
lgtm http://codereview.chromium.org/9558006/diff/3010/content/browser/fileapi/file_and_blob_message_filter.h File content/browser/fileapi/file_and_blob_message_filter.h (right): http://codereview.chromium.org/9558006/diff/3010/content/browser/fileapi/file_and_blob_message_filter.h#newcode42 content/browser/fileapi/file_and_blob_message_filter.h:42: class FileAndBlobMessageFilter : public content::BrowserMessageFilter { nit: perhaps ...
8 years, 9 months ago (2012-03-01 01:12:56 UTC) #4
kinuko
http://codereview.chromium.org/9558006/diff/3010/content/browser/fileapi/file_and_blob_message_filter.h File content/browser/fileapi/file_and_blob_message_filter.h (right): http://codereview.chromium.org/9558006/diff/3010/content/browser/fileapi/file_and_blob_message_filter.h#newcode42 content/browser/fileapi/file_and_blob_message_filter.h:42: class FileAndBlobMessageFilter : public content::BrowserMessageFilter { On 2012/03/01 01:12:56, ...
8 years, 9 months ago (2012-03-01 01:14:50 UTC) #5
tzik
http://codereview.chromium.org/9558006/diff/3010/content/browser/fileapi/file_and_blob_message_filter.h File content/browser/fileapi/file_and_blob_message_filter.h (right): http://codereview.chromium.org/9558006/diff/3010/content/browser/fileapi/file_and_blob_message_filter.h#newcode42 content/browser/fileapi/file_and_blob_message_filter.h:42: class FileAndBlobMessageFilter : public content::BrowserMessageFilter { On 2012/03/01 01:12:56, ...
8 years, 9 months ago (2012-03-01 02:08:55 UTC) #6
kinuko
http://codereview.chromium.org/9558006/diff/2062/content/browser/fileapi/file_api_message_filter.h File content/browser/fileapi/file_api_message_filter.h (right): http://codereview.chromium.org/9558006/diff/2062/content/browser/fileapi/file_api_message_filter.h#newcode6 content/browser/fileapi/file_api_message_filter.h:6: #define CONTENT_BROWSER_FILEAPI_FILE_API_MESSAGE_FILTER_H_ Hmm, since we usually write just 'fileapi' ...
8 years, 9 months ago (2012-03-01 02:12:06 UTC) #7
tzik
http://codereview.chromium.org/9558006/diff/2062/content/browser/fileapi/file_api_message_filter.h File content/browser/fileapi/file_api_message_filter.h (right): http://codereview.chromium.org/9558006/diff/2062/content/browser/fileapi/file_api_message_filter.h#newcode6 content/browser/fileapi/file_api_message_filter.h:6: #define CONTENT_BROWSER_FILEAPI_FILE_API_MESSAGE_FILTER_H_ On 2012/03/01 02:12:06, kinuko wrote: > Hmm, ...
8 years, 9 months ago (2012-03-01 02:20:12 UTC) #8
michaeln
renaming/moving lgtm, please run try jobs
8 years, 9 months ago (2012-03-01 05:53:57 UTC) #9
tzik
On 2012/03/01 05:53:57, michaeln wrote: > renaming/moving lgtm, please run try jobs Thanks! Now, try ...
8 years, 9 months ago (2012-03-01 07:14:15 UTC) #10
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/tzik@chromium.org/9558006/12001
8 years, 9 months ago (2012-03-01 17:25:14 UTC) #11
commit-bot: I haz the power
Change committed as 124439
8 years, 9 months ago (2012-03-01 19:08:23 UTC) #12
jam
https://codereview.chromium.org/9558006/diff/12001/content/browser/fileapi/browser_file_system_helper.cc File content/browser/fileapi/browser_file_system_helper.cc (right): https://codereview.chromium.org/9558006/diff/12001/content/browser/fileapi/browser_file_system_helper.cc#newcode22 content/browser/fileapi/browser_file_system_helper.cc:22: const char kExtensionScheme[] = "chrome-extension"; I just saw this ...
7 years, 10 months ago (2013-02-01 03:10:38 UTC) #13
kinuko
On 2013/02/01 03:10:38, jam wrote: > https://codereview.chromium.org/9558006/diff/12001/content/browser/fileapi/browser_file_system_helper.cc > File content/browser/fileapi/browser_file_system_helper.cc (right): > > https://codereview.chromium.org/9558006/diff/12001/content/browser/fileapi/browser_file_system_helper.cc#newcode22 > ...
7 years, 10 months ago (2013-02-01 03:33:16 UTC) #14
jam
7 years, 10 months ago (2013-02-01 03:37:46 UTC) #15
Message was sent while issue was closed.
On 2013/02/01 03:33:16, kinuko wrote:
> On 2013/02/01 03:10:38, jam wrote:
> >
>
https://codereview.chromium.org/9558006/diff/12001/content/browser/fileapi/br...
> > File content/browser/fileapi/browser_file_system_helper.cc (right):
> > 
> >
>
https://codereview.chromium.org/9558006/diff/12001/content/browser/fileapi/br...
> > content/browser/fileapi/browser_file_system_helper.cc:22: const char
> > kExtensionScheme[] = "chrome-extension";
> > I just saw this while looking through the code. this a layering violation,
> since
> > content shouldn't know about chrome
> 
> I just filed a bug: http://crbug.com/173574
> We also have chrome_blob_storage_context.{cc,h} here... (it's created when we
> were in chrome/).

thanks :) I've commented on the bug.

Powered by Google App Engine
This is Rietveld 408576698