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

Issue 2902673003: Added a refresh database button on the IndexedDB view. (Closed)

Created:
3 years, 7 months ago by kristipark
Modified:
3 years, 6 months ago
CC:
chromium-reviews, caseq+blink_chromium.org, lushnikov+blink_chromium.org, pfeldman+blink_chromium.org, apavlov+blink_chromium.org, devtools-reviews_chromium.org, blink-reviews, pfeldman, kozyatinskiy+blink_chromium.org
Target Ref:
refs/heads/master
Project:
chromium
Visibility:
Public.

Description

Added a refresh database button on the IndexedDB view. BUG=723871 Review-Url: https://codereview.chromium.org/2902673003 Cr-Commit-Position: refs/heads/master@{#475739} Committed: https://chromium.googlesource.com/chromium/src/+/075f218d5fc98ed1738637f05354ce9a3b0cb831

Patch Set 1 #

Total comments: 5

Patch Set 2 : Removed model and test line #

Total comments: 8

Patch Set 3 : Changed to use refreshDatabase() function instead of event listener, created database structure in … #

Total comments: 15

Patch Set 4 : Finished test if refresh button refreshes the objectstore view. #

Patch Set 5 : Removed a comment. #

Patch Set 6 : Fixing trybot failures, wrong security origin in test expected file. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+241 lines, -2 lines) Patch
A third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/database-refresh-view.html View 1 2 3 4 1 chunk +187 lines, -0 lines 0 comments Download
A third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/database-refresh-view-expected.txt View 1 2 3 4 5 1 chunk +33 lines, -0 lines 0 comments Download
M third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/indexeddb-test.js View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/devtools/front_end/resources/IndexedDBViews.js View 1 2 3 4 chunks +19 lines, -0 lines 0 comments Download

Messages

Total messages: 38 (18 generated)
kristipark
Please let me know if my test file is on the right track.
3 years, 7 months ago (2017-05-23 19:27:38 UTC) #3
eostroukhov
Looks good! Sorry, but I am not a Chromium committer - so you'll also have ...
3 years, 7 months ago (2017-05-23 20:29:55 UTC) #5
kristipark
Thanks Eugene! https://codereview.chromium.org/2902673003/diff/1/third_party/WebKit/Source/devtools/front_end/resources/IndexedDBModel.js File third_party/WebKit/Source/devtools/front_end/resources/IndexedDBModel.js (right): https://codereview.chromium.org/2902673003/diff/1/third_party/WebKit/Source/devtools/front_end/resources/IndexedDBModel.js#newcode196 third_party/WebKit/Source/devtools/front_end/resources/IndexedDBModel.js:196: refreshDatabaseView(databaseId) { On 2017/05/23 20:29:55, eostroukhov wrote: ...
3 years, 7 months ago (2017-05-23 20:53:58 UTC) #6
eostroukhov
https://codereview.chromium.org/2902673003/diff/1/third_party/WebKit/Source/devtools/front_end/resources/IndexedDBModel.js File third_party/WebKit/Source/devtools/front_end/resources/IndexedDBModel.js (right): https://codereview.chromium.org/2902673003/diff/1/third_party/WebKit/Source/devtools/front_end/resources/IndexedDBModel.js#newcode196 third_party/WebKit/Source/devtools/front_end/resources/IndexedDBModel.js:196: refreshDatabaseView(databaseId) { On 2017/05/23 20:53:58, kristipark wrote: > On ...
3 years, 7 months ago (2017-05-23 20:57:32 UTC) #7
dmurph
initial comments https://codereview.chromium.org/2902673003/diff/20001/third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/database-refresh-view.html File third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/database-refresh-view.html (right): https://codereview.chromium.org/2902673003/diff/20001/third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/database-refresh-view.html#newcode15 third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/database-refresh-view.html:15: function createIndexedDB(callback) { See style guide: https://google.github.io/styleguide/javascriptguide.xml#Function_Declarations_Within_Blocks ...
3 years, 7 months ago (2017-05-23 21:22:05 UTC) #8
kristipark
On 2017/05/23 20:57:32, eostroukhov wrote: > https://codereview.chromium.org/2902673003/diff/1/third_party/WebKit/Source/devtools/front_end/resources/IndexedDBModel.js > File third_party/WebKit/Source/devtools/front_end/resources/IndexedDBModel.js > (right): > > https://codereview.chromium.org/2902673003/diff/1/third_party/WebKit/Source/devtools/front_end/resources/IndexedDBModel.js#newcode196 ...
3 years, 7 months ago (2017-05-23 23:48:16 UTC) #9
dgozman
https://codereview.chromium.org/2902673003/diff/20001/third_party/WebKit/Source/devtools/front_end/resources/IndexedDBModel.js File third_party/WebKit/Source/devtools/front_end/resources/IndexedDBModel.js (right): https://codereview.chromium.org/2902673003/diff/20001/third_party/WebKit/Source/devtools/front_end/resources/IndexedDBModel.js#newcode196 third_party/WebKit/Source/devtools/front_end/resources/IndexedDBModel.js:196: refreshDatabaseView(databaseId) { Should this actually be merged with method ...
3 years, 7 months ago (2017-05-24 23:38:47 UTC) #10
kristipark
Changed the refresh button to use the refreshDatabase() function instead of an event listener. Test ...
3 years, 7 months ago (2017-05-26 01:09:28 UTC) #11
dgozman
https://codereview.chromium.org/2902673003/diff/40001/third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/database-refresh-view.html File third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/database-refresh-view.html (right): https://codereview.chromium.org/2902673003/diff/40001/third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/database-refresh-view.html#newcode9 third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/database-refresh-view.html:9: var createDatabase = function(databaseName) { function createDatabase( https://codereview.chromium.org/2902673003/diff/40001/third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/database-refresh-view.html#newcode23 third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/database-refresh-view.html:23: ...
3 years, 7 months ago (2017-05-26 19:10:46 UTC) #12
kristipark
Finished adding entries and testing if the refresh button refreshes the objectstore view. Last bit ...
3 years, 7 months ago (2017-05-26 22:42:19 UTC) #13
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2902673003/60001
3 years, 7 months ago (2017-05-26 23:54:27 UTC) #18
commit-bot: I haz the power
No L-G-T-M from a valid reviewer yet. CQ run can only be started once the ...
3 years, 7 months ago (2017-05-26 23:54:29 UTC) #20
dgozman
lgtm. Nice work!
3 years, 6 months ago (2017-05-30 18:47:43 UTC) #21
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2902673003/60001
3 years, 6 months ago (2017-05-30 18:53:31 UTC) #23
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2902673003/80001
3 years, 6 months ago (2017-05-30 18:57:59 UTC) #27
kristipark
Removed a comment
3 years, 6 months ago (2017-05-30 19:47:01 UTC) #28
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel_ng on master.tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/457215)
3 years, 6 months ago (2017-05-30 20:57:55 UTC) #31
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2902673003/100001
3 years, 6 months ago (2017-05-30 23:35:54 UTC) #34
dmurph
lgtm :)
3 years, 6 months ago (2017-05-31 00:16:29 UTC) #35
commit-bot: I haz the power
3 years, 6 months ago (2017-05-31 02:03:16 UTC) #38
Message was sent while issue was closed.
Committed patchset #6 (id:100001) as
https://chromium.googlesource.com/chromium/src/+/075f218d5fc98ed1738637f05354...

Powered by Google App Engine
This is Rietveld 408576698