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

Issue 2777943005: [Bindings] Move and remove some private symbols from V8HiddenValue (Closed)

Created:
3 years, 8 months ago by peria
Modified:
3 years, 8 months ago
Reviewers:
haraken, Yuki
CC:
chromium-reviews, michaeln, jsbell+serviceworker_chromium.org, tzik, shimazu+serviceworker_chromium.org, serviceworker-reviews, kinuko+serviceworker, nhiroki, haraken, blink-reviews-bindings_chromium.org, cmumford, blink-reviews, horo+watch_chromium.org, falken+watch_chromium.org, jsbell+idb_chromium.org
Target Ref:
refs/heads/master
Project:
chromium
Visibility:
Public.

Description

Moves following symbols from V8HiddenValue to V8PrivateProperty - customElementAttachedCallback - customElementAttributeChangedCallback - customElementCreatedCallback - customElementDetachedCallback - customElementsRegistryMap - idbCursorRequest - internalBodyBuffer - internalBodyStream - requestInFetchEvent - toStringString and removes following symbols, which are not used. - testInterfaces - thenableHiddenPromise - injectedScriptNative BUG=611864 Review-Url: https://codereview.chromium.org/2777943005 Cr-Commit-Position: refs/heads/master@{#462071} Committed: https://chromium.googlesource.com/chromium/src/+/2acaf7f8acf2931db3d91fa51a2dd0a0e2d0481f

Patch Set 1 : . #

Patch Set 2 : Rebase #

Total comments: 14

Patch Set 3 : work for comments #

Total comments: 2

Patch Set 4 : . #

Total comments: 12

Patch Set 5 : Rebase #

Total comments: 1

Patch Set 6 : Fix test failures #

Total comments: 1
Unified diffs Side-by-side diffs Delta from patch set Stats (+70 lines, -80 lines) Patch
M third_party/WebKit/Source/bindings/core/v8/ScriptCustomElementDefinition.cpp View 1 2 3 3 chunks +10 lines, -10 lines 0 comments Download
M third_party/WebKit/Source/bindings/core/v8/V8HiddenValue.h View 1 chunk +0 lines, -13 lines 0 comments Download
M third_party/WebKit/Source/bindings/core/v8/V8LazyEventListener.cpp View 1 2 3 chunks +6 lines, -8 lines 0 comments Download
M third_party/WebKit/Source/bindings/core/v8/V8PrivateProperty.h View 1 2 3 4 5 2 chunks +13 lines, -0 lines 1 comment Download
M third_party/WebKit/Source/bindings/core/v8/V8V0CustomElementLifecycleCallbacks.cpp View 1 2 3 4 5 2 chunks +15 lines, -14 lines 0 comments Download
M third_party/WebKit/Source/modules/fetch/BodyStreamBuffer.cpp View 1 2 5 chunks +8 lines, -13 lines 0 comments Download
M third_party/WebKit/Source/modules/fetch/Request.cpp View 1 2 3 4 5 3 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/modules/fetch/Response.cpp View 1 2 2 chunks +3 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/modules/indexeddb/IDBCursor.cpp View 1 2 3 chunks +5 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/modules/serviceworkers/FetchEvent.cpp View 1 2 3 4 5 2 chunks +3 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/modules/serviceworkers/ForeignFetchEvent.cpp View 1 2 2 chunks +3 lines, -4 lines 0 comments Download

Messages

Total messages: 44 (33 generated)
peria
PTL
3 years, 8 months ago (2017-03-29 05:50:48 UTC) #5
Yuki
https://codereview.chromium.org/2777943005/diff/40001/third_party/WebKit/Source/bindings/core/v8/ScriptCustomElementDefinition.cpp File third_party/WebKit/Source/bindings/core/v8/ScriptCustomElementDefinition.cpp (right): https://codereview.chromium.org/2777943005/diff/40001/third_party/WebKit/Source/bindings/core/v8/ScriptCustomElementDefinition.cpp#newcode65 third_party/WebKit/Source/bindings/core/v8/ScriptCustomElementDefinition.cpp:65: // Audit the use of hidden values in general ...
3 years, 8 months ago (2017-03-29 12:36:05 UTC) #14
peria
https://codereview.chromium.org/2777943005/diff/40001/third_party/WebKit/Source/bindings/core/v8/ScriptCustomElementDefinition.cpp File third_party/WebKit/Source/bindings/core/v8/ScriptCustomElementDefinition.cpp (right): https://codereview.chromium.org/2777943005/diff/40001/third_party/WebKit/Source/bindings/core/v8/ScriptCustomElementDefinition.cpp#newcode65 third_party/WebKit/Source/bindings/core/v8/ScriptCustomElementDefinition.cpp:65: // Audit the use of hidden values in general ...
3 years, 8 months ago (2017-03-30 09:30:16 UTC) #16
Yuki
LGTM. https://codereview.chromium.org/2777943005/diff/80001/third_party/WebKit/Source/bindings/core/v8/ScriptCustomElementDefinition.cpp File third_party/WebKit/Source/bindings/core/v8/ScriptCustomElementDefinition.cpp (right): https://codereview.chromium.org/2777943005/diff/80001/third_party/WebKit/Source/bindings/core/v8/ScriptCustomElementDefinition.cpp#newcode37 third_party/WebKit/Source/bindings/core/v8/ScriptCustomElementDefinition.cpp:37: v8::Local<v8::Value> map = symbol.getOrEmpty(wrapper); nit: We can use ...
3 years, 8 months ago (2017-03-30 09:36:08 UTC) #19
peria
https://codereview.chromium.org/2777943005/diff/80001/third_party/WebKit/Source/bindings/core/v8/ScriptCustomElementDefinition.cpp File third_party/WebKit/Source/bindings/core/v8/ScriptCustomElementDefinition.cpp (right): https://codereview.chromium.org/2777943005/diff/80001/third_party/WebKit/Source/bindings/core/v8/ScriptCustomElementDefinition.cpp#newcode37 third_party/WebKit/Source/bindings/core/v8/ScriptCustomElementDefinition.cpp:37: v8::Local<v8::Value> map = symbol.getOrEmpty(wrapper); On 2017/03/30 09:36:08, Yuki wrote: ...
3 years, 8 months ago (2017-03-30 10:27:12 UTC) #20
haraken
LGTM https://codereview.chromium.org/2777943005/diff/100001/third_party/WebKit/Source/bindings/core/v8/ScriptCustomElementDefinition.cpp File third_party/WebKit/Source/bindings/core/v8/ScriptCustomElementDefinition.cpp (right): https://codereview.chromium.org/2777943005/diff/100001/third_party/WebKit/Source/bindings/core/v8/ScriptCustomElementDefinition.cpp#newcode38 third_party/WebKit/Source/bindings/core/v8/ScriptCustomElementDefinition.cpp:38: if (map->IsUndefined()) { As I commented in the ...
3 years, 8 months ago (2017-03-30 14:04:46 UTC) #25
peria
https://codereview.chromium.org/2777943005/diff/100001/third_party/WebKit/Source/bindings/core/v8/ScriptCustomElementDefinition.cpp File third_party/WebKit/Source/bindings/core/v8/ScriptCustomElementDefinition.cpp (right): https://codereview.chromium.org/2777943005/diff/100001/third_party/WebKit/Source/bindings/core/v8/ScriptCustomElementDefinition.cpp#newcode38 third_party/WebKit/Source/bindings/core/v8/ScriptCustomElementDefinition.cpp:38: if (map->IsUndefined()) { On 2017/03/30 14:04:45, haraken wrote: > ...
3 years, 8 months ago (2017-04-04 05:48:58 UTC) #27
peria
PTAL, just in case. https://codereview.chromium.org/2777943005/diff/140001/third_party/WebKit/Source/bindings/core/v8/V8V0CustomElementLifecycleCallbacks.cpp File third_party/WebKit/Source/bindings/core/v8/V8V0CustomElementLifecycleCallbacks.cpp (right): https://codereview.chromium.org/2777943005/diff/140001/third_party/WebKit/Source/bindings/core/v8/V8V0CustomElementLifecycleCallbacks.cpp#newcode67 third_party/WebKit/Source/bindings/core/v8/V8V0CustomElementLifecycleCallbacks.cpp:67: symbol##Name.set(prototype, Maybe.ToLocalChecked()); This change triggered ...
3 years, 8 months ago (2017-04-05 09:57:02 UTC) #35
Yuki
LGTM.
3 years, 8 months ago (2017-04-05 10:42:19 UTC) #36
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/2777943005/180001
3 years, 8 months ago (2017-04-05 13:52:10 UTC) #41
commit-bot: I haz the power
3 years, 8 months ago (2017-04-05 15:00:03 UTC) #44
Message was sent while issue was closed.
Committed patchset #6 (id:180001) as
https://chromium.googlesource.com/chromium/src/+/2acaf7f8acf2931db3d91fa51a2d...

Powered by Google App Engine
This is Rietveld 408576698