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

Issue 9368053: Move indexed db files from content/renderer to content/common. (Closed)

Created:
8 years, 10 months ago by dgrogan
Modified:
8 years, 10 months ago
Reviewers:
jam, jsbell
CC:
chromium-reviews, joi+watch-content_chromium.org, darin-cc_chromium.org, jam
Visibility:
Public.

Description

Move indexed db files from content/renderer to content/common. http://codereview.chromium.org/9375024/ enables indexed db in shared workers. BUG=112855 TEST= Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=121669

Patch Set 1 #

Total comments: 15

Patch Set 2 : address comments #

Patch Set 3 : remove file that had only license year change #

Patch Set 4 : fix code duplication #

Patch Set 5 : fix checkdeps by adding method to ChildThread #

Total comments: 3

Patch Set 6 : move include from child_thread.h to child_thread.cc #

Total comments: 5

Patch Set 7 : remove unneccesary include #

Unified diffs Side-by-side diffs Delta from patch set Stats (+124 lines, -2211 lines) Patch
M content/common/child_thread.h View 1 2 3 4 5 2 chunks +6 lines, -0 lines 0 comments Download
M content/common/child_thread.cc View 1 2 3 4 6 1 chunk +5 lines, -0 lines 0 comments Download
A + content/common/indexed_db/indexed_db_dispatcher.h View 1 2 chunks +4 lines, -4 lines 0 comments Download
A + content/common/indexed_db/indexed_db_dispatcher.cc View 1 2 3 4 4 chunks +16 lines, -23 lines 0 comments Download
A + content/common/indexed_db/indexed_db_message_filter.h View 1 2 chunks +4 lines, -4 lines 0 comments Download
A + content/common/indexed_db/indexed_db_message_filter.cc View 1 1 chunk +3 lines, -3 lines 0 comments Download
A + content/common/indexed_db/proxy_webidbcursor_impl.h View 1 2 chunks +4 lines, -4 lines 0 comments Download
A + content/common/indexed_db/proxy_webidbcursor_impl.cc View 1 1 chunk +4 lines, -4 lines 0 comments Download
A + content/common/indexed_db/proxy_webidbdatabase_impl.h View 1 2 chunks +4 lines, -4 lines 0 comments Download
A + content/common/indexed_db/proxy_webidbdatabase_impl.cc View 1 1 chunk +6 lines, -6 lines 0 comments Download
A + content/common/indexed_db/proxy_webidbfactory_impl.h View 1 2 chunks +4 lines, -4 lines 0 comments Download
A + content/common/indexed_db/proxy_webidbfactory_impl.cc View 1 1 chunk +4 lines, -4 lines 0 comments Download
A + content/common/indexed_db/proxy_webidbindex_impl.h View 2 chunks +3 lines, -3 lines 0 comments Download
A + content/common/indexed_db/proxy_webidbindex_impl.cc View 1 chunk +4 lines, -4 lines 0 comments Download
A + content/common/indexed_db/proxy_webidbobjectstore_impl.h View 1 2 chunks +4 lines, -4 lines 0 comments Download
A + content/common/indexed_db/proxy_webidbobjectstore_impl.cc View 1 1 chunk +6 lines, -6 lines 0 comments Download
A + content/common/indexed_db/proxy_webidbtransaction_impl.h View 1 2 chunks +4 lines, -4 lines 0 comments Download
A + content/common/indexed_db/proxy_webidbtransaction_impl.cc View 1 1 chunk +5 lines, -5 lines 0 comments Download
M content/content_common.gypi View 1 chunk +16 lines, -0 lines 0 comments Download
M content/content_renderer.gypi View 1 chunk +0 lines, -16 lines 0 comments Download
D content/renderer/indexed_db/OWNERS View 1 chunk +0 lines, -4 lines 0 comments Download
D content/renderer/indexed_db/indexed_db_dispatcher.h View 1 chunk +0 lines, -250 lines 0 comments Download
D content/renderer/indexed_db/indexed_db_dispatcher.cc View 1 chunk +0 lines, -688 lines 0 comments Download
D content/renderer/indexed_db/indexed_db_message_filter.h View 1 chunk +0 lines, -28 lines 0 comments Download
D content/renderer/indexed_db/indexed_db_message_filter.cc View 1 chunk +0 lines, -37 lines 0 comments Download
D content/renderer/indexed_db/renderer_webidbcursor_impl.h View 1 chunk +0 lines, -75 lines 0 comments Download
D content/renderer/indexed_db/renderer_webidbcursor_impl.cc View 1 chunk +0 lines, -181 lines 0 comments Download
D content/renderer/indexed_db/renderer_webidbdatabase_impl.h View 1 chunk +0 lines, -52 lines 0 comments Download
D content/renderer/indexed_db/renderer_webidbdatabase_impl.cc View 1 chunk +0 lines, -136 lines 0 comments Download
D content/renderer/indexed_db/renderer_webidbfactory_impl.h View 1 chunk +0 lines, -45 lines 0 comments Download
D content/renderer/indexed_db/renderer_webidbfactory_impl.cc View 1 chunk +0 lines, -62 lines 0 comments Download
D content/renderer/indexed_db/renderer_webidbindex_impl.h View 1 chunk +0 lines, -52 lines 0 comments Download
D content/renderer/indexed_db/renderer_webidbindex_impl.cc View 1 chunk +0 lines, -122 lines 0 comments Download
D content/renderer/indexed_db/renderer_webidbobjectstore_impl.h View 1 chunk +0 lines, -78 lines 0 comments Download
D content/renderer/indexed_db/renderer_webidbobjectstore_impl.cc View 1 chunk +0 lines, -185 lines 0 comments Download
D content/renderer/indexed_db/renderer_webidbtransaction_impl.h View 1 chunk +0 lines, -36 lines 0 comments Download
D content/renderer/indexed_db/renderer_webidbtransaction_impl.cc View 1 chunk +0 lines, -74 lines 0 comments Download
M content/renderer/render_thread_impl.h View 1 2 3 4 1 chunk +3 lines, -0 lines 0 comments Download
M content/renderer/render_thread_impl.cc View 1 2 3 4 3 chunks +14 lines, -3 lines 0 comments Download
M content/renderer/renderer_webkitplatformsupport_impl.cc View 2 chunks +1 line, -1 line 0 comments Download

Messages

Total messages: 14 (0 generated)
dgrogan
I'll rename the classes (Renderer -> Proxy) in a later patch. For some bikeshedding, I ...
8 years, 10 months ago (2012-02-10 02:22:30 UTC) #1
dgrogan
Now, actually +jsbell.
8 years, 10 months ago (2012-02-10 02:23:05 UTC) #2
jsbell
lgtm with nits/questions/TODO suggestion https://chromiumcodereview.appspot.com/9368053/diff/1/content/common/indexed_db/indexed_db_dispatcher.cc File content/common/indexed_db/indexed_db_dispatcher.cc (right): https://chromiumcodereview.appspot.com/9368053/diff/1/content/common/indexed_db/indexed_db_dispatcher.cc#newcode15 content/common/indexed_db/indexed_db_dispatcher.cc:15: #include "content/common/child_thread.h" Nit: include ordering ...
8 years, 10 months ago (2012-02-10 18:57:27 UTC) #3
dgrogan
https://chromiumcodereview.appspot.com/9368053/diff/1/content/common/indexed_db/indexed_db_dispatcher.cc File content/common/indexed_db/indexed_db_dispatcher.cc (right): https://chromiumcodereview.appspot.com/9368053/diff/1/content/common/indexed_db/indexed_db_dispatcher.cc#newcode15 content/common/indexed_db/indexed_db_dispatcher.cc:15: #include "content/common/child_thread.h" On 2012/02/10 18:57:29, jsbell wrote: > Nit: ...
8 years, 10 months ago (2012-02-10 19:57:20 UTC) #4
jsbell
lgtm
8 years, 10 months ago (2012-02-10 20:03:00 UTC) #5
dgrogan
jam, could you review as OWNER of content/renderer?
8 years, 10 months ago (2012-02-10 20:14:27 UTC) #6
dgrogan
Josh, could you look at the checkdeps fix?
8 years, 10 months ago (2012-02-10 23:38:16 UTC) #7
jsbell
lgtm with nit http://codereview.chromium.org/9368053/diff/9050/content/common/child_thread.h File content/common/child_thread.h (right): http://codereview.chromium.org/9368053/diff/9050/content/common/child_thread.h#newcode15 content/common/child_thread.h:15: #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" Nit: include ordering http://codereview.chromium.org/9368053/diff/9050/content/renderer/renderer_webkitplatformsupport_impl.cc ...
8 years, 10 months ago (2012-02-10 23:57:37 UTC) #8
dgrogan
John, I think this is now _actually_ ready for you to look at. http://codereview.chromium.org/9368053/diff/9050/content/common/child_thread.h File ...
8 years, 10 months ago (2012-02-11 00:05:24 UTC) #9
jam
http://codereview.chromium.org/9368053/diff/10013/content/common/child_thread.cc File content/common/child_thread.cc (right): http://codereview.chromium.org/9368053/diff/10013/content/common/child_thread.cc#newcode25 content/common/child_thread.cc:25: #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" nit: not needed http://codereview.chromium.org/9368053/diff/10013/content/common/indexed_db/proxy_webidbcursor_impl.h File content/common/indexed_db/proxy_webidbcursor_impl.h (right): ...
8 years, 10 months ago (2012-02-11 02:32:07 UTC) #10
dgrogan
http://codereview.chromium.org/9368053/diff/10013/content/common/child_thread.cc File content/common/child_thread.cc (right): http://codereview.chromium.org/9368053/diff/10013/content/common/child_thread.cc#newcode25 content/common/child_thread.cc:25: #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" On 2012/02/11 02:32:07, John Abd-El-Malek wrote: > ...
8 years, 10 months ago (2012-02-11 03:03:25 UTC) #11
jam
lgtm http://codereview.chromium.org/9368053/diff/10013/content/common/indexed_db/proxy_webidbcursor_impl.h File content/common/indexed_db/proxy_webidbcursor_impl.h (right): http://codereview.chromium.org/9368053/diff/10013/content/common/indexed_db/proxy_webidbcursor_impl.h#newcode18 content/common/indexed_db/proxy_webidbcursor_impl.h:18: class RendererWebIDBCursorImpl : public WebKit::WebIDBCursor { On 2012/02/11 ...
8 years, 10 months ago (2012-02-12 01:09:46 UTC) #12
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dgrogan@chromium.org/9368053/10015
8 years, 10 months ago (2012-02-12 09:56:49 UTC) #13
commit-bot: I haz the power
8 years, 10 months ago (2012-02-12 18:10:05 UTC) #14
Change committed as 121669

Powered by Google App Engine
This is Rietveld 408576698