-
Notifications
You must be signed in to change notification settings - Fork 6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Chromium to 9659b08ea5a34f889dc4166217f438095ddc10d2 #74
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This change matches what GYP does. [email protected]
- Add missing dependencies caught by gn's new stricter checker - Update opentype code to use new OTS API. This code is updated from HEAD Blink. - Add base dependency to wtf to avoid redefining marcos from base/macros.h - Update callers of various base string utility functions to use base namespace.
abarth
added a commit
that referenced
this pull request
Jul 17, 2015
Update Chromium to 9659b08ea5a34f889dc4166217f438095ddc10d2
ranbin
pushed a commit
to ranbin/engine
that referenced
this pull request
Sep 28, 2018
PingShen
referenced
this pull request
Jul 14, 2020
Translate the coordinate from global flutterview to the specific embedded sub-view.
PingShen
referenced
this pull request
Jul 14, 2020
This change makes it so that we track all the motion events encountered by `FlutterView` and all of its subviews in the `MotionEventTracker` class, indexed by a unique `MotionEventId`. This identifier is then passed to the Flutter framework as seen in flutter/flutter#60930. Once the gestures take part in gesture disambiguation and are sent back to the engine, we look-up the original motion event using the `MotionEventId` and dispatch it to the platform. Bug: flutter/flutter#58837
rhencke
pushed a commit
to rhencke/engine
that referenced
this pull request
Dec 20, 2020
Due to an upcoming change in Dart 2.0 (dart-lang/sdk#32148), it will no longer be allowed for a class to implement the same generic interface in different ways. (E.g. a class cannot implement/extend/mixin both A<int> and A<String>). This causes problems with _LocalDirectory. It extends _LocalFileSystemEntity<_LocalDirectory, Directory>, which extends ForwardingFileSystemEntity<_LocalDirectory, Directory>, but it mixes in ForwardingDirectory, which extends ForwardingFileSystemEntity<Directory, io.Directory>. The solution is to make ForwardingDirectory a generic mixin, with ForwardingDirectory<T> extending ForwardingFileSystemEntity<T, io.Directory>. Type inference automatically fills in the type argument T=_LocalDirectory at the site of the declaration of _LocalDirectory.
rhencke
pushed a commit
to rhencke/engine
that referenced
this pull request
Dec 20, 2020
Drop section on installing from library level doc comment - it isn't useful enough there, and it had some outdated links. Replace `http://dartlang.org` with `https://dart.dev` everywhere. Add a browser example to the doc comment for `context.split` for consistency with the comment on `p.split`. Switch some doc comments to use single quotes and avoid `new`.
rhencke
pushed a commit
to rhencke/engine
that referenced
this pull request
Dec 20, 2020
Update homepage
rhencke
pushed a commit
to rhencke/engine
that referenced
this pull request
Dec 20, 2020
rhencke
pushed a commit
to rhencke/engine
that referenced
this pull request
Dec 20, 2020
rhencke
pushed a commit
to rhencke/engine
that referenced
this pull request
Dec 20, 2020
If wmic.exe wasn't available, then CMakeLists.txt would call "cmd /C date /T" and parse the result in order to set the BUILD variable. However, the parser assumed that the date was in MM/DD/YYYY format, which is not generally the case unless the user's locale is U.S. English with the default region/language settings for that locale. This commit modifies CMakeLists.txt such that it uses the string(TIMESTAMP) function available in CMake 2.8.11 and later to set the BUILD variable, thus eliminating the need to use wmic.exe or any other platform-specific hack. This commit also modifies the build instructions to remove any reference to CMake 2.6 (which hasn't been supported by our build system since libjpeg-turbo 1.3.x.) Closes flutter#74
pwasowski2
pushed a commit
to pwasowski2/engine
that referenced
this pull request
Apr 27, 2021
* Add multi touch support for Tizen embedder Tested on TM1 device Signed-off-by: Rafal Walczyna <[email protected]> * Rename multi_touch_device to device_id Signed-off-by: Rafal Walczyna <[email protected]>
swift-kim
referenced
this pull request
in swift-kim/engine
Jun 7, 2021
* Add multi touch support for Tizen embedder Tested on TM1 device Signed-off-by: Rafal Walczyna <[email protected]> * Rename multi_touch_device to device_id Signed-off-by: Rafal Walczyna <[email protected]>
swift-kim
referenced
this pull request
in swift-kim/engine
Sep 27, 2021
* Add multi touch support for Tizen embedder Tested on TM1 device Signed-off-by: Rafal Walczyna <[email protected]> * Rename multi_touch_device to device_id Signed-off-by: Rafal Walczyna <[email protected]>
swift-kim
referenced
this pull request
in swift-kim/engine
Nov 15, 2021
* Add multi touch support for Tizen embedder Tested on TM1 device Signed-off-by: Rafal Walczyna <[email protected]> * Rename multi_touch_device to device_id Signed-off-by: Rafal Walczyna <[email protected]>
WonyoungChoi
pushed a commit
to WonyoungChoi/engine
that referenced
this pull request
Dec 14, 2021
* Add multi touch support for Tizen embedder Tested on TM1 device Signed-off-by: Rafal Walczyna <[email protected]> * Rename multi_touch_device to device_id Signed-off-by: Rafal Walczyna <[email protected]>
WonyoungChoi
pushed a commit
to WonyoungChoi/engine
that referenced
this pull request
Dec 23, 2021
* Add multi touch support for Tizen embedder * Rename multi_touch_device to device_id
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This change brings us up-to-date with Chromium as of this afternoon.