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

Issue 1685393002: [Experimental Framework] Rename IDL attribute to OriginTrialEnabled (Closed)

Created:
4 years, 10 months ago by iclelland
Modified:
4 years, 10 months ago
Reviewers:
haraken, chasej
CC:
chromium-reviews, blink-reviews, blink-reviews-bindings_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

[Experimental Framework] Rename IDL attribute to OriginTrialEnabled R=haraken@chromium.org TBR=chasej@chromium.org BUG=575808 Committed: https://crrev.com/48848bca460b8ce12e89ca6314ef121063465fa2 Cr-Commit-Position: refs/heads/master@{#375123}

Patch Set 1 #

Total comments: 2

Patch Set 2 : Alphabetize context dict entries #

Total comments: 6

Patch Set 3 : Rename variables to avoid "experiment" name #

Patch Set 4 : Addressing feedback, more renames #

Patch Set 5 : Change existing usage of APIExperimentEnabled #

Unified diffs Side-by-side diffs Delta from patch set Stats (+81 lines, -81 lines) Patch
M third_party/WebKit/Source/bindings/IDLExtendedAttributes.txt View 2 chunks +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/bindings/scripts/generate_global_constructors.py View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/bindings/scripts/v8_attributes.py View 1 5 chunks +6 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/bindings/scripts/v8_interface.py View 1 2 3 5 chunks +11 lines, -11 lines 0 comments Download
M third_party/WebKit/Source/bindings/scripts/v8_methods.py View 1 4 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/bindings/scripts/v8_utilities.py View 1 2 2 chunks +11 lines, -11 lines 0 comments Download
M third_party/WebKit/Source/bindings/templates/attributes.cpp View 5 chunks +9 lines, -9 lines 0 comments Download
M third_party/WebKit/Source/bindings/templates/constants.cpp View 3 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/bindings/templates/methods.cpp View 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/bindings/templates/utilities.cpp View 1 2 3 2 chunks +6 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/bindings/tests/idls/core/TestInterface.idl View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/bindings/tests/idls/core/TestObject.idl View 4 chunks +14 lines, -14 lines 0 comments Download
M third_party/WebKit/Source/modules/bluetooth/Bluetooth.cpp View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/modules/bluetooth/Bluetooth.idl View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/modules/bluetooth/BluetoothAdvertisingData.idl View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/modules/bluetooth/BluetoothCharacteristicProperties.idl View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/modules/bluetooth/BluetoothDevice.idl View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/modules/bluetooth/BluetoothGATTCharacteristic.idl View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/modules/bluetooth/BluetoothGATTRemoteServer.idl View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/modules/bluetooth/BluetoothGATTService.idl View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/modules/bluetooth/BluetoothUUID.idl View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/modules/bluetooth/NavigatorBluetooth.idl View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 12 (3 generated)
iclelland
haraken, PTAL (and CQ if OK) Thanks!
4 years, 10 months ago (2016-02-11 04:13:13 UTC) #1
haraken
LGTM https://codereview.chromium.org/1685393002/diff/1/third_party/WebKit/Source/bindings/scripts/v8_attributes.py File third_party/WebKit/Source/bindings/scripts/v8_attributes.py (right): https://codereview.chromium.org/1685393002/diff/1/third_party/WebKit/Source/bindings/scripts/v8_attributes.py#newcode106 third_party/WebKit/Source/bindings/scripts/v8_attributes.py:106: 'origin_trial_enabled': v8_utilities.origin_trial_enabled_function(attribute), # [OriginTrialEnabled] Alphabetical order please. (The ...
4 years, 10 months ago (2016-02-11 05:46:56 UTC) #2
iclelland
https://codereview.chromium.org/1685393002/diff/1/third_party/WebKit/Source/bindings/scripts/v8_attributes.py File third_party/WebKit/Source/bindings/scripts/v8_attributes.py (right): https://codereview.chromium.org/1685393002/diff/1/third_party/WebKit/Source/bindings/scripts/v8_attributes.py#newcode106 third_party/WebKit/Source/bindings/scripts/v8_attributes.py:106: 'origin_trial_enabled': v8_utilities.origin_trial_enabled_function(attribute), # [OriginTrialEnabled] On 2016/02/11 05:46:56, haraken wrote: ...
4 years, 10 months ago (2016-02-11 15:21:57 UTC) #3
chasej
I saw the latest patch addressed some of my offline comments - thanks for that. ...
4 years, 10 months ago (2016-02-11 20:01:50 UTC) #4
iclelland
https://codereview.chromium.org/1685393002/diff/20001/third_party/WebKit/Source/bindings/scripts/v8_interface.py File third_party/WebKit/Source/bindings/scripts/v8_interface.py (right): https://codereview.chromium.org/1685393002/diff/20001/third_party/WebKit/Source/bindings/scripts/v8_interface.py#newcode611 third_party/WebKit/Source/bindings/scripts/v8_interface.py:611: # [DeprecateAs], [Reflect], [RuntimeEnabled] On 2016/02/11 20:01:50, chasej wrote: ...
4 years, 10 months ago (2016-02-11 21:37:37 UTC) #5
chasej
lgtm
4 years, 10 months ago (2016-02-11 23:45:45 UTC) #6
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1685393002/80001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1685393002/80001
4 years, 10 months ago (2016-02-12 04:03:54 UTC) #9
commit-bot: I haz the power
Committed patchset #5 (id:80001)
4 years, 10 months ago (2016-02-12 05:10:59 UTC) #10
commit-bot: I haz the power
4 years, 10 months ago (2016-02-16 22:41:41 UTC) #12
Message was sent while issue was closed.
Patchset 5 (id:??) landed as
https://crrev.com/48848bca460b8ce12e89ca6314ef121063465fa2
Cr-Commit-Position: refs/heads/master@{#375123}

Powered by Google App Engine
This is Rietveld 408576698