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

Issue 2031113002: IndexedDB Observers (Closed)

Created:
4 years, 6 months ago by palakj1
Modified:
4 years, 5 months ago
CC:
blink-reviews, blink-reviews-api_chromium.org, blink-reviews-bindings_chromium.org, chromium-reviews, cmumford, darin-cc_chromium.org, dglazkov+blink, haraken, jam, jsbell+idb_chromium.org, kinuko+watch
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

IndexedDB Observers with webidl files, initial constructor for creating observer and observe function. BUG=609934 Reference: https://github.com/dmurph/indexed-db-observers/blob/gh-pages/EXPLAINER.md Current Implementation and Future Scope: https://goo.gl/Y2dobn Committed: https://crrev.com/dd97a20cea3444559290d55e8fae06bd580cd5ba Cr-Commit-Position: refs/heads/master@{#400796}

Patch Set 1 : IDBObserver initial constructor and webidl #

Patch Set 2 : Observer #

Patch Set 3 : Only IDL changes #

Patch Set 4 : IDL changes #

Patch Set 5 : idl changes #

Total comments: 31

Patch Set 6 : Observer idl #

Total comments: 4

Patch Set 7 : Observer IDl #

Patch Set 8 : observer IDL #

Patch Set 9 : Interface Expected files changed #

Patch Set 10 : Expected files #

Total comments: 19

Patch Set 11 : IDl observer #

Total comments: 5

Patch Set 12 : Observer idl with worker tests #

Total comments: 17

Patch Set 13 : Worker test added #

Patch Set 14 : Worker test #

Total comments: 2

Patch Set 15 : IDBObserverChanges ChangesRecord interface created #

Patch Set 16 : IDLObserverChanges interface #

Total comments: 3

Patch Set 17 : IDBObserverChanges todo added #

Total comments: 1

Patch Set 18 : Correction to V8IDBObserverCallback.cpp #

Patch Set 19 : Post rebase #

Patch Set 20 : Header file changes #

Patch Set 21 : Header changes #

Patch Set 22 : header #

Patch Set 23 : header changes #

Patch Set 24 : Expected result changed #

Total comments: 30

Patch Set 25 : Post review by mek, dmurph #

Total comments: 6

Patch Set 26 : Idl change for delete #

Total comments: 2

Patch Set 27 : Non-virtualized destructors #

Patch Set 28 : Expected files updated #

Patch Set 29 : expected files updated #

Unified diffs Side-by-side diffs Delta from patch set Stats (+634 lines, -7 lines) Patch
M third_party/WebKit/LayoutTests/http/tests/serviceworker/webexposed/global-interface-listing-service-worker-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 1 chunk +8 lines, -0 lines 0 comments Download
A third_party/WebKit/LayoutTests/storage/indexeddb/observer.html View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +6 lines, -0 lines 0 comments Download
A third_party/WebKit/LayoutTests/storage/indexeddb/observer-worker.html View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +9 lines, -0 lines 0 comments Download
A third_party/WebKit/LayoutTests/storage/indexeddb/resources/observer.js View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +26 lines, -0 lines 0 comments Download
M third_party/WebKit/LayoutTests/webexposed/global-interface-listing-dedicated-worker-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 1 chunk +10 lines, -0 lines 0 comments Download
M third_party/WebKit/LayoutTests/webexposed/global-interface-listing-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 28 1 chunk +16 lines, -0 lines 0 comments Download
M third_party/WebKit/LayoutTests/webexposed/global-interface-listing-shared-worker-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 1 chunk +10 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/bindings/core/v8/V8Binding.h View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/bindings/core/v8/V8PrivateProperty.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +7 lines, -6 lines 0 comments Download
A third_party/WebKit/Source/bindings/modules/v8/V8IDBObserverCallback.h View 1 2 3 4 5 6 7 8 9 10 11 13 14 1 chunk +31 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/bindings/modules/v8/V8IDBObserverCallback.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +33 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/bindings/modules/v8/custom/V8IDBObserverCustom.cpp View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +49 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/bindings/modules/v8/custom/custom.gni View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/bindings/modules/v8/custom/custom.gypi View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/bindings/modules/v8/v8.gni View 1 chunk +2 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/bindings/modules/v8/v8.gypi View 1 chunk +2 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/modules/indexeddb/IDBObserver.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +40 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/modules/indexeddb/IDBObserver.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +40 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/modules/indexeddb/IDBObserver.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +14 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/modules/indexeddb/IDBObserverCallback.h View 1 chunk +24 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +44 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +41 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +20 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/modules/indexeddb/IDBObserverChangesRecord.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +44 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/modules/indexeddb/IDBObserverChangesRecord.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +91 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/modules/indexeddb/IDBObserverChangesRecord.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 1 chunk +22 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/modules/indexeddb/IDBObserverInit.idl View 1 2 3 4 5 6 7 8 9 10 1 chunk +13 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/modules/indexeddb/IDBValue.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/modules/indexeddb/IDBValue.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +2 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/modules/indexeddb/IndexedDBNames.in View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 1 chunk +6 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/modules/modules.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 4 chunks +12 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/RuntimeEnabledFeatures.in View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/public/platform/modules/indexeddb/WebIDBTypes.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +7 lines, -0 lines 0 comments Download

Dependent Patchsets:

Messages

Total messages: 117 (38 generated)
palakj1
IndexedDB Observers Preliminary design with webidl files, initial constructor for creating observer and observe function. ...
4 years, 6 months ago (2016-06-02 22:31:14 UTC) #3
dmurph
This is all looking really really good! Do you mind moving non-Blink (non-third_part/WebKit) changes into ...
4 years, 6 months ago (2016-06-02 22:41:16 UTC) #4
palakj1
Please have a look.
4 years, 6 months ago (2016-06-02 23:18:16 UTC) #5
dmurph
+Marijn
4 years, 6 months ago (2016-06-02 23:30:40 UTC) #7
dmurph
https://codereview.chromium.org/2031113002/diff/80001/third_party/WebKit/Source/bindings/modules/v8/V8IDBObserverCallback.h File third_party/WebKit/Source/bindings/modules/v8/V8IDBObserverCallback.h (right): https://codereview.chromium.org/2031113002/diff/80001/third_party/WebKit/Source/bindings/modules/v8/V8IDBObserverCallback.h#newcode27 third_party/WebKit/Source/bindings/modules/v8/V8IDBObserverCallback.h:27: static void setWeakCallback(const v8::WeakCallbackInfo<V8IDBObserverCallback>&); Do we need this? https://codereview.chromium.org/2031113002/diff/80001/third_party/WebKit/Source/bindings/modules/v8/custom/V8IDBObserverCustom.cpp ...
4 years, 6 months ago (2016-06-02 23:48:38 UTC) #8
dmurph
https://codereview.chromium.org/2031113002/diff/80001/third_party/WebKit/Source/bindings/modules/v8/V8IDBObserverCallback.h File third_party/WebKit/Source/bindings/modules/v8/V8IDBObserverCallback.h (right): https://codereview.chromium.org/2031113002/diff/80001/third_party/WebKit/Source/bindings/modules/v8/V8IDBObserverCallback.h#newcode27 third_party/WebKit/Source/bindings/modules/v8/V8IDBObserverCallback.h:27: static void setWeakCallback(const v8::WeakCallbackInfo<V8IDBObserverCallback>&); Do we need this? https://codereview.chromium.org/2031113002/diff/80001/third_party/WebKit/Source/bindings/modules/v8/custom/V8IDBObserverCustom.cpp ...
4 years, 6 months ago (2016-06-02 23:48:38 UTC) #9
Marijn Kruisselbrink
Some initial comments (and I realize at least a bunch of my comments are because ...
4 years, 6 months ago (2016-06-02 23:51:25 UTC) #10
palakj1
changes post dmuprh, mek reviews https://codereview.chromium.org/2031113002/diff/80001/third_party/WebKit/Source/bindings/modules/v8/V8IDBObserverCallback.h File third_party/WebKit/Source/bindings/modules/v8/V8IDBObserverCallback.h (right): https://codereview.chromium.org/2031113002/diff/80001/third_party/WebKit/Source/bindings/modules/v8/V8IDBObserverCallback.h#newcode20 third_party/WebKit/Source/bindings/modules/v8/V8IDBObserverCallback.h:20: CORE_EXPORT V8IDBObserverCallback(v8::Local<v8::Function>, v8::Local<v8::Object>, ScriptState*); ...
4 years, 6 months ago (2016-06-03 01:21:53 UTC) #11
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2031113002/100001
4 years, 6 months ago (2016-06-03 23:36:02 UTC) #13
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: android_compile_dbg on tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/android_compile_dbg/builds/76698) cast_shell_android on ...
4 years, 6 months ago (2016-06-03 23:57:12 UTC) #15
dmurph
You'll also need to edit V8PrivateValue so it compiles. Other than that this looks good ...
4 years, 6 months ago (2016-06-04 00:56:18 UTC) #16
palakj1
https://codereview.chromium.org/2031113002/diff/100001/third_party/WebKit/Source/bindings/modules/v8/V8IDBObserverCallback.cpp File third_party/WebKit/Source/bindings/modules/v8/V8IDBObserverCallback.cpp (right): https://codereview.chromium.org/2031113002/diff/100001/third_party/WebKit/Source/bindings/modules/v8/V8IDBObserverCallback.cpp#newcode21 third_party/WebKit/Source/bindings/modules/v8/V8IDBObserverCallback.cpp:21: V8HiddenValue::setHiddenValue(scriptState, owner, V8HiddenValue::callback(scriptState->isolate()), callback); On 2016/06/04 at 00:56:18, dmurph ...
4 years, 6 months ago (2016-06-06 19:49:30 UTC) #17
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2031113002/140001
4 years, 6 months ago (2016-06-06 19:50:33 UTC) #19
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: mac_chromium_rel_ng on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_ng/builds/239764)
4 years, 6 months ago (2016-06-06 21:14:07 UTC) #21
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2031113002/180001
4 years, 6 months ago (2016-06-06 22:01:45 UTC) #23
dmurph
lgtm https://codereview.chromium.org/2031113002/diff/180001/third_party/WebKit/Source/modules/indexeddb/IDBObserver.cpp File third_party/WebKit/Source/modules/indexeddb/IDBObserver.cpp (right): https://codereview.chromium.org/2031113002/diff/180001/third_party/WebKit/Source/modules/indexeddb/IDBObserver.cpp#newcode39 third_party/WebKit/Source/modules/indexeddb/IDBObserver.cpp:39: // TODO(palakj): Finish implementation nit: period at the ...
4 years, 6 months ago (2016-06-06 22:35:50 UTC) #24
Marijn Kruisselbrink
Also link to whatever spec this is implementing in the CL description (as well as ...
4 years, 6 months ago (2016-06-06 23:09:11 UTC) #25
palakj1
Some changes in idl files which involve spec issues would be dealt in the next ...
4 years, 6 months ago (2016-06-07 00:11:16 UTC) #27
dmurph
regarding the spec you found, see this issue for our idl structure: https://github.com/WICG/indexed-db-observers/issues/24 I'm going ...
4 years, 6 months ago (2016-06-07 00:15:23 UTC) #28
dmurph
https://codereview.chromium.org/2031113002/diff/180001/third_party/WebKit/Source/modules/indexeddb/IDBObserver.idl File third_party/WebKit/Source/modules/indexeddb/IDBObserver.idl (right): https://codereview.chromium.org/2031113002/diff/180001/third_party/WebKit/Source/modules/indexeddb/IDBObserver.idl#newcode5 third_party/WebKit/Source/modules/indexeddb/IDBObserver.idl:5: callback IDBObserverCallback = void (IDBObserverChanges changes); On 2016/06/07 at ...
4 years, 6 months ago (2016-06-07 00:19:20 UTC) #29
haraken
https://codereview.chromium.org/2031113002/diff/200001/third_party/WebKit/Source/modules/indexeddb/IDBObserver.h File third_party/WebKit/Source/modules/indexeddb/IDBObserver.h (right): https://codereview.chromium.org/2031113002/diff/200001/third_party/WebKit/Source/modules/indexeddb/IDBObserver.h#newcode14 third_party/WebKit/Source/modules/indexeddb/IDBObserver.h:14: #include "wtf/RefPtr.h" Remove unused headers. The same comment for ...
4 years, 6 months ago (2016-06-07 00:21:42 UTC) #31
haraken
4 years, 6 months ago (2016-06-07 00:21:53 UTC) #33
dmurph
https://codereview.chromium.org/2031113002/diff/200001/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl File third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl (right): https://codereview.chromium.org/2031113002/diff/200001/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl#newcode15 third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl:15: any records; On 2016/06/07 at 00:21:41, haraken wrote: > ...
4 years, 6 months ago (2016-06-07 18:42:16 UTC) #34
palakj1
Added worker tests, removed redundant header. IDBObserverChanges.idl needs to be changed from dictionary to interface.Not ...
4 years, 6 months ago (2016-06-08 20:21:00 UTC) #35
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2031113002/220001
4 years, 6 months ago (2016-06-08 20:23:32 UTC) #37
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: ios-device on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios-device/builds/18193) ios-device-gn on ...
4 years, 6 months ago (2016-06-08 20:27:36 UTC) #39
Marijn Kruisselbrink
https://codereview.chromium.org/2031113002/diff/220001/third_party/WebKit/LayoutTests/http/tests/fetch/script-tests/observer.js File third_party/WebKit/LayoutTests/http/tests/fetch/script-tests/observer.js (right): https://codereview.chromium.org/2031113002/diff/220001/third_party/WebKit/LayoutTests/http/tests/fetch/script-tests/observer.js#newcode1 third_party/WebKit/LayoutTests/http/tests/fetch/script-tests/observer.js:1: if (self.importScripts) { It doesn't really make sense to ...
4 years, 6 months ago (2016-06-08 20:44:41 UTC) #40
palakj1
Worker test updated. Please have a look. https://codereview.chromium.org/2031113002/diff/220001/third_party/WebKit/LayoutTests/http/tests/fetch/script-tests/observer.js File third_party/WebKit/LayoutTests/http/tests/fetch/script-tests/observer.js (right): https://codereview.chromium.org/2031113002/diff/220001/third_party/WebKit/LayoutTests/http/tests/fetch/script-tests/observer.js#newcode2 third_party/WebKit/LayoutTests/http/tests/fetch/script-tests/observer.js:2: importScripts('../resources/fetch-test-helpers.js'); On ...
4 years, 6 months ago (2016-06-09 18:13:39 UTC) #42
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2031113002/260001
4 years, 6 months ago (2016-06-09 18:13:54 UTC) #43
dmurph
Other than changing the dictionaries to interfaces, this LGTM
4 years, 6 months ago (2016-06-09 18:18:51 UTC) #44
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 6 months ago (2016-06-09 22:37:56 UTC) #46
haraken
LGTM bashi@: Please check if the IDL changes make sense. Also see #34. https://codereview.chromium.org/2031113002/diff/260001/third_party/WebKit/Source/modules/indexeddb/IDBObserver.h File ...
4 years, 6 months ago (2016-06-10 00:26:57 UTC) #47
bashi
Sorry I missed this. https://codereview.chromium.org/2031113002/diff/260001/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl File third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl (right): https://codereview.chromium.org/2031113002/diff/260001/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl#newcode16 third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl:16: any records; I'd prefer to ...
4 years, 6 months ago (2016-06-10 00:36:45 UTC) #48
palakj1
IDBObserverChanges, IDBObserverChangesRecord interface added. Please have a look.
4 years, 6 months ago (2016-06-11 00:35:12 UTC) #49
bashi
https://codereview.chromium.org/2031113002/diff/300001/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl File third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl (right): https://codereview.chromium.org/2031113002/diff/300001/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl#newcode15 third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl:15: [CallWith=ScriptState] readonly attribute any records; Can you elaborate why ...
4 years, 6 months ago (2016-06-13 01:35:51 UTC) #50
dmurph
https://codereview.chromium.org/2031113002/diff/300001/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl File third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl (right): https://codereview.chromium.org/2031113002/diff/300001/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl#newcode15 third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl:15: [CallWith=ScriptState] readonly attribute any records; On 2016/06/13 at 01:35:51, ...
4 years, 6 months ago (2016-06-13 17:23:52 UTC) #51
palakj1
https://codereview.chromium.org/2031113002/diff/300001/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl File third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl (right): https://codereview.chromium.org/2031113002/diff/300001/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl#newcode15 third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl:15: [CallWith=ScriptState] readonly attribute any records; On 2016/06/13 at 17:23:52, ...
4 years, 6 months ago (2016-06-13 21:30:12 UTC) #52
palakj1
Added a todo.
4 years, 6 months ago (2016-06-13 22:29:48 UTC) #53
bashi
On 2016/06/13 22:29:48, palakj1 wrote: > Added a todo. Thanks for explanations. bindings/ lgtm
4 years, 6 months ago (2016-06-13 23:47:20 UTC) #54
palakj1
On 2016/06/13 at 23:47:20, bashi wrote: > On 2016/06/13 22:29:48, palakj1 wrote: > > Added ...
4 years, 6 months ago (2016-06-14 01:56:21 UTC) #55
bashi
On 2016/06/14 01:56:21, palakj1 wrote: > On 2016/06/13 at 23:47:20, bashi wrote: > > On ...
4 years, 6 months ago (2016-06-14 02:14:11 UTC) #56
blink-reviews
He means that he gives his approval for files in the "bindings/" directory :) On ...
4 years, 6 months ago (2016-06-14 02:32:52 UTC) #57
chromium-reviews
He means that he gives his approval for files in the "bindings/" directory :) On ...
4 years, 6 months ago (2016-06-14 02:32:53 UTC) #58
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2031113002/340001
4 years, 6 months ago (2016-06-14 02:44:38 UTC) #60
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: chromeos_daisy_chromium_compile_only_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromeos_daisy_chromium_compile_only_ng/builds/152458) chromeos_x86-generic_chromium_compile_only_ng on ...
4 years, 6 months ago (2016-06-14 03:02:02 UTC) #62
palakj1
https://codereview.chromium.org/2031113002/diff/320001/third_party/WebKit/Source/bindings/modules/v8/V8IDBObserverCallback.cpp File third_party/WebKit/Source/bindings/modules/v8/V8IDBObserverCallback.cpp (right): https://codereview.chromium.org/2031113002/diff/320001/third_party/WebKit/Source/bindings/modules/v8/V8IDBObserverCallback.cpp#newcode19 third_party/WebKit/Source/bindings/modules/v8/V8IDBObserverCallback.cpp:19: V8PrivateProperty::getIntersectionObserverCallback(scriptState->isolate()).set(scriptState->context(), owner, callback); getIDBObserver
4 years, 6 months ago (2016-06-14 03:09:28 UTC) #64
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2031113002/360001
4 years, 6 months ago (2016-06-14 18:43:45 UTC) #66
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: chromeos_x86-generic_chromium_compile_only_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromeos_x86-generic_chromium_compile_only_ng/builds/152732)
4 years, 6 months ago (2016-06-14 19:03:05 UTC) #68
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2031113002/380001
4 years, 6 months ago (2016-06-14 19:47:21 UTC) #70
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2031113002/400001
4 years, 6 months ago (2016-06-14 20:15:35 UTC) #73
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: android_compile_dbg on tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/android_compile_dbg/builds/81467) mac_chromium_gn_rel on ...
4 years, 6 months ago (2016-06-14 20:27:37 UTC) #75
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2031113002/460001
4 years, 6 months ago (2016-06-15 00:43:28 UTC) #77
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/200758)
4 years, 6 months ago (2016-06-15 00:58:54 UTC) #79
Marijn Kruisselbrink
https://codereview.chromium.org/2031113002/diff/460001/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.h File third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.h (right): https://codereview.chromium.org/2031113002/diff/460001/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.h#newcode17 third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.h:17: class IDBDatabase; no need to forward declare Database and ...
4 years, 6 months ago (2016-06-15 13:02:45 UTC) #80
dmurph
https://codereview.chromium.org/2031113002/diff/460001/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.cpp File third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.cpp (right): https://codereview.chromium.org/2031113002/diff/460001/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.cpp#newcode12 third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.cpp:12: #include <v8.h> Don't include v8 https://codereview.chromium.org/2031113002/diff/460001/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl File third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl (right): ...
4 years, 6 months ago (2016-06-15 13:10:49 UTC) #81
Marijn Kruisselbrink
https://codereview.chromium.org/2031113002/diff/460001/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl File third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl (right): https://codereview.chromium.org/2031113002/diff/460001/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl#newcode9 third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl:9: ] interface IDBObserverChanges { On 2016/06/15 at 13:10:48, dmurph ...
4 years, 6 months ago (2016-06-15 13:22:37 UTC) #82
palakj1
https://codereview.chromium.org/2031113002/diff/460001/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.cpp File third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.cpp (right): https://codereview.chromium.org/2031113002/diff/460001/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.cpp#newcode12 third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.cpp:12: #include <v8.h> On 2016/06/15 at 13:10:48, dmurph wrote: > ...
4 years, 6 months ago (2016-06-15 19:16:31 UTC) #83
dmurph
https://codereview.chromium.org/2031113002/diff/460001/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl File third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl (right): https://codereview.chromium.org/2031113002/diff/460001/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl#newcode9 third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.idl:9: ] interface IDBObserverChanges { On 2016/06/15 at 19:16:30, palakj1 ...
4 years, 6 months ago (2016-06-15 19:35:15 UTC) #84
palakj1
https://codereview.chromium.org/2031113002/diff/480001/third_party/WebKit/Source/modules/indexeddb/IDBObserverCallback.h File third_party/WebKit/Source/modules/indexeddb/IDBObserverCallback.h (right): https://codereview.chromium.org/2031113002/diff/480001/third_party/WebKit/Source/modules/indexeddb/IDBObserverCallback.h#newcode8 third_party/WebKit/Source/modules/indexeddb/IDBObserverCallback.h:8: #include "platform/heap/Handle.h" On 2016/06/15 at 19:35:15, dmurph wrote: > ...
4 years, 6 months ago (2016-06-15 21:24:49 UTC) #85
dmurph
https://codereview.chromium.org/2031113002/diff/480001/third_party/WebKit/Source/modules/indexeddb/IDBObserverCallback.h File third_party/WebKit/Source/modules/indexeddb/IDBObserverCallback.h (right): https://codereview.chromium.org/2031113002/diff/480001/third_party/WebKit/Source/modules/indexeddb/IDBObserverCallback.h#newcode8 third_party/WebKit/Source/modules/indexeddb/IDBObserverCallback.h:8: #include "platform/heap/Handle.h" On 2016/06/15 at 21:24:49, palakj1 wrote: > ...
4 years, 6 months ago (2016-06-15 21:28:35 UTC) #86
haraken
https://codereview.chromium.org/2031113002/diff/480001/third_party/WebKit/Source/modules/indexeddb/IDBObserverCallback.h File third_party/WebKit/Source/modules/indexeddb/IDBObserverCallback.h (right): https://codereview.chromium.org/2031113002/diff/480001/third_party/WebKit/Source/modules/indexeddb/IDBObserverCallback.h#newcode8 third_party/WebKit/Source/modules/indexeddb/IDBObserverCallback.h:8: #include "platform/heap/Handle.h" On 2016/06/15 21:28:35, dmurph wrote: > On ...
4 years, 6 months ago (2016-06-16 00:22:29 UTC) #87
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2031113002/500001
4 years, 6 months ago (2016-06-16 06:57:28 UTC) #89
dmurph
This still lgtm. Do you need any more approvals?
4 years, 6 months ago (2016-06-16 06:59:57 UTC) #90
Marijn Kruisselbrink
https://codereview.chromium.org/2031113002/diff/460001/third_party/WebKit/Source/modules/indexeddb/IDBValue.h File third_party/WebKit/Source/modules/indexeddb/IDBValue.h (right): https://codereview.chromium.org/2031113002/diff/460001/third_party/WebKit/Source/modules/indexeddb/IDBValue.h#newcode27 third_party/WebKit/Source/modules/indexeddb/IDBValue.h:27: virtual ~IDBValue(); On 2016/06/15 at 19:16:31, palakj1 wrote: > ...
4 years, 6 months ago (2016-06-16 07:09:30 UTC) #91
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: mac_chromium_rel_ng on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_ng/builds/245248)
4 years, 6 months ago (2016-06-16 08:51:04 UTC) #93
palakj1
On 2016/06/16 at 07:09:30, mek wrote: > https://codereview.chromium.org/2031113002/diff/460001/third_party/WebKit/Source/modules/indexeddb/IDBValue.h > File third_party/WebKit/Source/modules/indexeddb/IDBValue.h (right): > > https://codereview.chromium.org/2031113002/diff/460001/third_party/WebKit/Source/modules/indexeddb/IDBValue.h#newcode27 ...
4 years, 6 months ago (2016-06-16 17:01:51 UTC) #94
palakj1
https://codereview.chromium.org/2031113002/diff/500001/third_party/WebKit/Source/modules/indexeddb/IDBObserverChangesRecord.h File third_party/WebKit/Source/modules/indexeddb/IDBObserverChangesRecord.h (right): https://codereview.chromium.org/2031113002/diff/500001/third_party/WebKit/Source/modules/indexeddb/IDBObserverChangesRecord.h#newcode38 third_party/WebKit/Source/modules/indexeddb/IDBObserverChangesRecord.h:38: PassRefPtr<IDBValue> m_value; On 2016/06/16 at 07:09:30, Marijn Kruisselbrink wrote: ...
4 years, 6 months ago (2016-06-16 17:05:24 UTC) #95
palakj1
On 2016/06/16 at 06:59:57, dmurph wrote: > This still lgtm. Do you need any more ...
4 years, 6 months ago (2016-06-16 17:07:34 UTC) #96
Marijn Kruisselbrink
lgtm (but it doesn't look like you updated the test expectations after adding the Exposed=(Window,Worker) ...
4 years, 6 months ago (2016-06-17 07:26:20 UTC) #97
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2031113002/520001
4 years, 6 months ago (2016-06-17 08:47:26 UTC) #99
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: linux_chromium_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_rel_ng/builds/248166)
4 years, 6 months ago (2016-06-17 10:16:03 UTC) #101
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2031113002/540001
4 years, 6 months ago (2016-06-17 17:27:23 UTC) #103
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: linux_chromium_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_rel_ng/builds/248320)
4 years, 6 months ago (2016-06-17 18:57:57 UTC) #105
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2031113002/560001
4 years, 6 months ago (2016-06-18 02:35:21 UTC) #108
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/202968)
4 years, 6 months ago (2016-06-18 02:42:38 UTC) #110
jsbell
third_party/WebKit/public/platform/modules/indexeddb lgtm
4 years, 6 months ago (2016-06-20 17:40:46 UTC) #111
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2031113002/560001
4 years, 6 months ago (2016-06-20 19:55:06 UTC) #113
commit-bot: I haz the power
Committed patchset #29 (id:560001)
4 years, 6 months ago (2016-06-20 21:45:44 UTC) #114
commit-bot: I haz the power
4 years, 6 months ago (2016-06-20 21:51:07 UTC) #116
Message was sent while issue was closed.
Patchset 29 (id:??) landed as
https://crrev.com/dd97a20cea3444559290d55e8fae06bd580cd5ba
Cr-Commit-Position: refs/heads/master@{#400796}

Powered by Google App Engine
This is Rietveld 408576698