|
|
DescriptionImplements CSSPropertyAPI for the offset-position property.
A part of Project Ribbon, separating the parsing logic for CSS
properties from the parser into an API. This patch removes
CSSPropertyOffsetPosition from the switch statement in
parseSingleValue, and calls the API instead.
A function pointer to the parseSingleValue function from the API for the
page property is stored in a CSSPropertyDescriptor, and is called from
CSSPropertyParser.
This patch:
- Adds CSSPropertyAPIOffsetPosition.cpp to the BUILD.gn file.
- Adds api_class flag to CSSProperties.in, which indicates that
CSSPropertyAPIOffsetPosition.h is generated.
- Moves the parsing logic for page from CSSPropertyParser.cpp to
CSSPropertyAPIOffsetPosition.cpp, which implements
CSSPropertyAPI.h.
BUG=668012
Review-Url: https://codereview.chromium.org/2613863002
Cr-Commit-Position: refs/heads/master@{#442860}
Committed: https://chromium.googlesource.com/chromium/src/+/aa222b4550e646da3c723394d0835e00be7d8ba1
Patch Set 1 #Patch Set 2 : fixed dependencies, changed year #Patch Set 3 : dependencies #
Total comments: 3
Patch Set 4 : rebase #Patch Set 5 : rebase #
Depends on Patchset: Dependent Patchsets: Messages
Total messages: 38 (28 generated)
aazzam@google.com changed reviewers: + alancutter@chromium.org
lgtm
Description was changed from ========== Implemented CSSPropertyAPI for offset-position property. Added CSSPropertyAPIOffsetPosition which implements CSSPropertyAPI for the offset-position property. Moved parsing logic from CSSPropertyParser to the .cpp file. Added flag to CSSProperties.in so that the .h file will be generated. BUG=668012 ========== to ========== Implemented CSSPropertyAPI for offset-position property. Added CSSPropertyAPIOffsetPosition which implements CSSPropertyAPI for the offset-position property. Parsing logic is the same as before, just was moved from CSSPropertyParser to the .cpp file. Added flag to CSSProperties.in so that the .h file will be generated. BUG=668012 ==========
Description was changed from ========== Implemented CSSPropertyAPI for offset-position property. Added CSSPropertyAPIOffsetPosition which implements CSSPropertyAPI for the offset-position property. Parsing logic is the same as before, just was moved from CSSPropertyParser to the .cpp file. Added flag to CSSProperties.in so that the .h file will be generated. BUG=668012 ========== to ========== Implements CSSPropertyAPI for the offset-position property. A part of Project Ribbon, separating the parsing logic for CSS properties from the parser into an API. This patch removes CSSPropertyOffsetPosition from the switch statement in parseSingleValue, and calls the API instead. A function pointer to the parseSingleValue function from the API for the page property is stored in a CSSPropertyDescriptor, and is called from CSSPropertyParser. This patch: - Adds CSSPropertyAPIOffsetPosition.cpp to the BUILD.gn file. - Adds api_class flag to CSSProperties.in, which indicates that CSSPropertyAPIOffsetPosition.h is generated. - Moves the parsing logic for page from CSSPropertyParser.cpp to CSSPropertyAPIOffsetPosition.cpp, which implements CSSPropertyAPI.h. BUG=668012 ==========
aazzam@google.com changed reviewers: + sashab@chromium.org
lgtm https://codereview.chromium.org/2613863002/diff/40001/third_party/WebKit/Sour... File third_party/WebKit/Source/core/css/properties/CSSPropertyAPIOffsetPosition.cpp (right): https://codereview.chromium.org/2613863002/diff/40001/third_party/WebKit/Sour... third_party/WebKit/Source/core/css/properties/CSSPropertyAPIOffsetPosition.cpp:7: #include "core/css/CSSValuePair.h" Is this needed? https://codereview.chromium.org/2613863002/diff/40001/third_party/WebKit/Sour... third_party/WebKit/Source/core/css/properties/CSSPropertyAPIOffsetPosition.cpp:7: #include "core/css/CSSValuePair.h" Is this needed?
The CQ bit was checked by aazzam@google.com to run a CQ dry run
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.or...
The CQ bit was unchecked by commit-bot@chromium.org
Dry run: Try jobs failed on following builders: linux_android_rel_ng on master.tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/linux_androi...) ios-device on master.tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios-device/builds...) ios-device-xcode-clang on master.tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios-device-xcode-...) ios-simulator on master.tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios-simulator/bui...) ios-simulator-xcode-clang on master.tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios-simulator-xco...) mac_chromium_compile_dbg_ng on master.tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_comp...) mac_chromium_rel_ng on master.tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_...)
https://codereview.chromium.org/2613863002/diff/40001/third_party/WebKit/Sour... File third_party/WebKit/Source/core/css/properties/CSSPropertyAPIOffsetPosition.cpp (right): https://codereview.chromium.org/2613863002/diff/40001/third_party/WebKit/Sour... third_party/WebKit/Source/core/css/properties/CSSPropertyAPIOffsetPosition.cpp:7: #include "core/css/CSSValuePair.h" On 2017/01/09 at 05:19:35, sashab wrote: > Is this needed? yeah it's needed to assign a CSSValueList* from consumePosition to a CSSValue* :)
On 2017/01/10 at 06:22:15, aazzam wrote: > https://codereview.chromium.org/2613863002/diff/40001/third_party/WebKit/Sour... > File third_party/WebKit/Source/core/css/properties/CSSPropertyAPIOffsetPosition.cpp (right): > > https://codereview.chromium.org/2613863002/diff/40001/third_party/WebKit/Sour... > third_party/WebKit/Source/core/css/properties/CSSPropertyAPIOffsetPosition.cpp:7: #include "core/css/CSSValuePair.h" > On 2017/01/09 at 05:19:35, sashab wrote: > > Is this needed? > > yeah it's needed to assign a CSSValueList* from consumePosition to a CSSValue* :) my bad, I mean CSSValuePair*
The CQ bit was checked by aazzam@google.com to run a CQ dry run
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.or...
The CQ bit was unchecked by commit-bot@chromium.org
Dry run: Try jobs failed on following builders: android_compile_dbg on master.tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/android_comp...)
still LGTM :)
The CQ bit was checked by aazzam@google.com to run a CQ dry run
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.or...
The CQ bit was unchecked by commit-bot@chromium.org
Dry run: Try jobs failed on following builders: cast_shell_android on master.tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/cast_shell_a...)
The CQ bit was checked by aazzam@google.com to run a CQ dry run
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.or...
The CQ bit was unchecked by commit-bot@chromium.org
Dry run: Try jobs failed on following builders: chromeos_amd64-generic_chromium_compile_only_ng on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromeos_amd64-...)
The CQ bit was checked by aazzam@google.com to run a CQ dry run
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.or...
The CQ bit was unchecked by commit-bot@chromium.org
Dry run: This issue passed the CQ dry run.
The CQ bit was checked by aazzam@google.com
The patchset sent to the CQ was uploaded after l-g-t-m from alancutter@chromium.org, sashab@chromium.org Link to the patchset: https://codereview.chromium.org/2613863002/#ps80001 (title: "rebase")
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.or...
CQ is committing da patch. Bot data: {"patchset_id": 80001, "attempt_start_ts": 1484130451088650, "parent_rev": "ae00364f8accb45d8ee99270c9bfff763731c3f3", "commit_rev": "aa222b4550e646da3c723394d0835e00be7d8ba1"}
Message was sent while issue was closed.
Description was changed from ========== Implements CSSPropertyAPI for the offset-position property. A part of Project Ribbon, separating the parsing logic for CSS properties from the parser into an API. This patch removes CSSPropertyOffsetPosition from the switch statement in parseSingleValue, and calls the API instead. A function pointer to the parseSingleValue function from the API for the page property is stored in a CSSPropertyDescriptor, and is called from CSSPropertyParser. This patch: - Adds CSSPropertyAPIOffsetPosition.cpp to the BUILD.gn file. - Adds api_class flag to CSSProperties.in, which indicates that CSSPropertyAPIOffsetPosition.h is generated. - Moves the parsing logic for page from CSSPropertyParser.cpp to CSSPropertyAPIOffsetPosition.cpp, which implements CSSPropertyAPI.h. BUG=668012 ========== to ========== Implements CSSPropertyAPI for the offset-position property. A part of Project Ribbon, separating the parsing logic for CSS properties from the parser into an API. This patch removes CSSPropertyOffsetPosition from the switch statement in parseSingleValue, and calls the API instead. A function pointer to the parseSingleValue function from the API for the page property is stored in a CSSPropertyDescriptor, and is called from CSSPropertyParser. This patch: - Adds CSSPropertyAPIOffsetPosition.cpp to the BUILD.gn file. - Adds api_class flag to CSSProperties.in, which indicates that CSSPropertyAPIOffsetPosition.h is generated. - Moves the parsing logic for page from CSSPropertyParser.cpp to CSSPropertyAPIOffsetPosition.cpp, which implements CSSPropertyAPI.h. BUG=668012 Review-Url: https://codereview.chromium.org/2613863002 Cr-Commit-Position: refs/heads/master@{#442860} Committed: https://chromium.googlesource.com/chromium/src/+/aa222b4550e646da3c723394d083... ==========
Message was sent while issue was closed.
Committed patchset #5 (id:80001) as https://chromium.googlesource.com/chromium/src/+/aa222b4550e646da3c723394d083... |