- 24 Sep, 2019 40 commits
-
-
Gauthier Ambard authored
Bug: 1005962 Change-Id: Ie9ebe48b11d8fd0beb5a26f14affaa4d6696c102 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1816566 Auto-Submit: Gauthier Ambard <gambard@chromium.org> Reviewed-by:
edchin <edchin@chromium.org> Commit-Queue: Gauthier Ambard <gambard@chromium.org> Cr-Commit-Position: refs/heads/master@{#699341}
-
Ulan Degenbaev authored
Memory usage of some Chromium components depend on non-deterministic events such garbage collections. For benchmarks it is important to remove as much non-determinism as possible to get stable results. This CL adds a new field to RequestArgs which indicates whether the request is for a deterministic memory dump or not. Based on this field memory dump providers perform garbage collection or flushing of cashed to ensure that the memory usage is more stable. This CL does not change any of the existing behavior. It simply plumbs the deterministic option through different layers. Subsequent CL will update content/browser/devtools/protocol/tracing_handler.cc to select deterministic mode depending on its parameter. Bug: 922967 Change-Id: I4ca8a2e50fe2b9f2af2f10690e1aece6062b7d1c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1790106Reviewed-by:
Primiano Tucci <primiano@chromium.org> Reviewed-by:
Jochen Eisinger <jochen@chromium.org> Reviewed-by:
Mike West <mkwst@chromium.org> Commit-Queue: Ulan Degenbaev <ulan@chromium.org> Cr-Commit-Position: refs/heads/master@{#699340}
-
François Beaufort authored
https://gpuweb.github.io/gpuweb/#depth-stencil-attachments says stencilLoadValue is "unsigned long", not "long". This CL fixes it. Bug: 877147 Change-Id: I73592bc24800ee15c1b105473f6e79a52e8abe57 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1815019Reviewed-by:
Kentaro Hara <haraken@chromium.org> Reviewed-by:
Corentin Wallez <cwallez@chromium.org> Commit-Queue: François Beaufort <beaufort.francois@gmail.com> Cr-Commit-Position: refs/heads/master@{#699339}
-
v8-ci-autoroll-builder authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/da223de4..1a76e688 Please follow these instructions for assigning/CC'ing issues: https://v8.dev/docs/triage-issues Please close rolling in case of a roll revert: https://v8-roll.appspot.com/ This only works with a Google account. CQ_INCLUDE_TRYBOTS=luci.chromium.try:linux-blink-rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:linux_optional_gpu_tests_rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:mac_optional_gpu_tests_rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:win_optional_gpu_tests_rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel TBR=hablich@chromium.org,v8-waterfall-sheriff@grotations.appspotmail.com Change-Id: I53e2103a2d6f23782557f1460516b4cbc4a2ffc7 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1821547Reviewed-by:
v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Commit-Queue: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#699338}
-
Sigurdur Asgeirsson authored
Also rename the PageNode MainFrameNavigationCommitted notification to MainFrameDocumentChanged and maintain the navigation ID on every navigation. Bug: 966838 Change-Id: I50c4d5d63328e5ed226d07fc41d8983d61542acf Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1814761Reviewed-by:
Chris Hamilton <chrisha@chromium.org> Reviewed-by:
François Doray <fdoray@chromium.org> Commit-Queue: Sigurður Ásgeirsson <siggi@chromium.org> Cr-Commit-Position: refs/heads/master@{#699337}
-
Mythri A authored
This CL was created automatically with tools/perf/update_wpr script R=perezju@chromium.org Bug: 878390 Change-Id: If2bc253e04cbba91c3b6221de14d28316d368e6a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1816570 Commit-Queue: Mythri Alle <mythria@chromium.org> Reviewed-by:
Juan Antonio Navarro Pérez <perezju@chromium.org> Cr-Commit-Position: refs/heads/master@{#699336}
-
Peter Kasting authored
Bug: 1005568 Change-Id: Icae338018be268ac2ec395f5926efd4fc6efe764 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1819564 Commit-Queue: Allen Bauer <kylixrd@chromium.org> Reviewed-by:
Allen Bauer <kylixrd@chromium.org> Auto-Submit: Peter Kasting <pkasting@chromium.org> Cr-Commit-Position: refs/heads/master@{#699335}
-
Nektarios Paisios authored
Implements AXLineForTextMarker and corrects the implementation of AXTextMarkerRangeForLine and insertionPointLineNumber 1. NSAccessibilityLineForTextMarker should return the line number within the object it is called on where the given text marker is located. 2. NSAccessibilityTextMarkerRangeForLineParameterizedAttribute was not implemented correctly. It should return a text marker range spanning the given line within the object it is called on. It doesn't receive a text marker as a parameter but an integer representing the line number. 3. Per Safari, "insertionPointLineNumber" should return nil when the selection is not collapsed or when called on an object that does not contain the caret. 4. Took the opportunity to re-write the line calculation logic using C++ algorithms and switch away from using the deprecated sel_start and sel_end attributes. R=dmazzoni@chromium.org Bug: 990931 Change-Id: I96d7aaf56c1603c13f58827bb58b8bf467d91994 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1812100Reviewed-by:
Dominic Mazzoni <dmazzoni@chromium.org> Commit-Queue: Nektarios Paisios <nektar@chromium.org> Cr-Commit-Position: refs/heads/master@{#699334}
-
Kevin Ellis authored
This patch introduces a set of tests to ensure that references to animations are released when no longer needed. Bug: 960944 Change-Id: Id46fcd578ecf5882b6946d4e1d853087fa49ccaa Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1779016Reviewed-by:
Stephen McGruer <smcgruer@chromium.org> Commit-Queue: Kevin Ellis <kevers@chromium.org> Cr-Commit-Position: refs/heads/master@{#699333}
-
Santiago Aboy Solanes authored
This CL was created automatically with tools/perf/update_wpr script R=perezju@chromium.org Bug: 878390 Change-Id: I2ff70c83ba5bc3e2e0f482ab188c3c5992bad4c7 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1815123 Commit-Queue: Santiago Aboy Solanes <solanes@chromium.org> Auto-Submit: Santiago Aboy Solanes <solanes@chromium.org> Reviewed-by:
Juan Antonio Navarro Pérez <perezju@chromium.org> Cr-Commit-Position: refs/heads/master@{#699332}
-
Randy Rossi authored
Add a test to cover the case where a reordered node is ignored. Its children's unignored index in parent should be updated. Bug: 1005799 Test: New test case Change-Id: I11f675270bcf2cfd52f40edeb267d0c9f0e8e326 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1816655 Commit-Queue: Randy Rossi <rmrossi@chromium.org> Reviewed-by:
David Tseng <dtseng@chromium.org> Cr-Commit-Position: refs/heads/master@{#699331}
-
chromium-autoroll authored
https://android.googlesource.com/platform/external/perfetto.git/+log/ed80390b177f..5a9d89d158eb git log ed80390b177f..5a9d89d158eb --date=short --no-merges --format='%ad %ae %s' 2019-09-24 lalitm@google.com Merge "perfetto: fix bazel formatting" 2019-09-24 treehugger-gerrit@google.com Merge "Add JS big number library dependency" Created with: gclient setdep -r src/third_party/perfetto@5a9d89d158eb If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/perfetto-chromium-autoroll Please CC perfetto-bugs@google.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md TBR=perfetto-bugs@google.com Bug: None Change-Id: I4b2ad40d0d66f92791b6309fe4ff045a979c3448 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1821808Reviewed-by:
chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Commit-Queue: chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#699330}
-
Sigurd Schneider authored
Bug: chromium:1004203 Change-Id: I5079a1b7096fc03ed51aa23014c403f9931dbf29 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1803295Reviewed-by:
Yang Guo <yangguo@chromium.org> Reviewed-by:
Michael Hablich <hablich@chromium.org> Commit-Queue: Sigurd Schneider <sigurds@chromium.org> Cr-Commit-Position: refs/heads/master@{#699329}
-
Ricky Liang authored
This CL allows VideoTrackRecorder and WebRtcVideoFrameAdapter in Blink to consume GpuMemoryBuffer VideoFrame. Design doc: go/cros-camera:dd:zero-copy Bug: 982201 Change-Id: Iab3b33940c01cde5ad4be67c326a20273c0bef6b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1710552 Commit-Queue: Ricky Liang <jcliang@chromium.org> Reviewed-by:
Kenneth Russell <kbr@chromium.org> Reviewed-by:
Hirokazu Honda <hiroh@chromium.org> Reviewed-by:
Guido Urdaneta <guidou@chromium.org> Cr-Commit-Position: refs/heads/master@{#699328}
-
Jan Scheffler authored
This cl adds a new experiment to toggle the recording of coverage in the timeline. Bug: chromium:1004203 Change-Id: Ifdfac9109573630e46918f25d6785032d655c828 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1819440Reviewed-by:
Yang Guo <yangguo@chromium.org> Commit-Queue: Jan Scheffler <janscheffler@chromium.org> Cr-Commit-Position: refs/heads/master@{#699327}
-
Elly Fong-Jones authored
This change swaps the fullscreen icon color from #989898 to the enabled menu item foreground color, which also fixes the contrast on this icon. This makes the icon look a bit "heavy" in the menu but it's alright. Bug: 957391 Change-Id: Idcc47784643def21d0841e0c93fd52fe2b54a27d Ux-approved-by: monicagv Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1816129Reviewed-by:
Peter Kasting <pkasting@chromium.org> Commit-Queue: Elly Fong-Jones <ellyjones@chromium.org> Cr-Commit-Position: refs/heads/master@{#699326}
-
Yoav Weiss authored
There seem to be two different feature flags for Client Hints and Feature Policy, where only one seems to be used. This CL removes the spurious one. Change-Id: I524f90b928b8c8a9a6a7daac55b002b6d985db4c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1820737Reviewed-by:
Ian Clelland <iclelland@chromium.org> Commit-Queue: Yoav Weiss <yoavweiss@chromium.org> Cr-Commit-Position: refs/heads/master@{#699325}
-
Gyuyoung Kim authored
As a step to remove all uses of WebLocalizedString::kFooBar, this CL replaces below ones with matched IDS_FOO. - WebLocalizedString::kCalendarClear - WebLocalizedString::kCalendarToday Bug: 995644 Change-Id: I337cb55eea0399145ff8f3ece7677607f09cc46d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1817867 Commit-Queue: Gyuyoung Kim <gyuyoung@igalia.com> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Reviewed-by:
Kent Tamura <tkent@chromium.org> Reviewed-by:
Tommi <tommi@chromium.org> Cr-Commit-Position: refs/heads/master@{#699324}
-
Rouslan Solomakhin authored
Bug: 1000432 Change-Id: Ife158786d61f5f6b0eee58fa3d860a65f94e6255 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1795674 Commit-Queue: Rouslan Solomakhin <rouslan@chromium.org> Reviewed-by:
Matthew Jones <mdjones@chromium.org> Cr-Commit-Position: refs/heads/master@{#699323}
-
François Beaufort authored
Following WebGPU change at https://github.com/gpuweb/gpuweb/pull/427, this CL renames GPUBindGroupLayoutBinding dynamic to hasDynamicOffset. Bug: 877147 Change-Id: I5dce18178caae102911e64200415c607b65d9767 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1819316 Commit-Queue: François Beaufort <beaufort.francois@gmail.com> Reviewed-by:
Corentin Wallez <cwallez@chromium.org> Reviewed-by:
Kai Ninomiya <kainino@chromium.org> Cr-Commit-Position: refs/heads/master@{#699322}
-
Mikel Astiz authored
This reduces the exposure of a big API to many files that don't actually require it, and unblocks the redesign of the cryptographer in USS, which will be addressed in follow-up patches. Some trivial renames: Cryptographer --> DirectoryCryptographer Cryptographer::is_ready() --> Cryptographer::CanEncrypt() Cryptographer::GetDefaultNigoriKeyName() --> Cryptographer::GetDefaultEncryptionKeyName() Bug: 967417 Change-Id: I958f687de02f8f2d501db717739958f76d5f902f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1819358Reviewed-by:
Maksim Moskvitin <mmoskvitin@google.com> Commit-Queue: Mikel Astiz <mastiz@chromium.org> Cr-Commit-Position: refs/heads/master@{#699321}
-
Rika Fujimaki authored
Since we don't use ScriptState* in CreateNull(), we replace CreateNull(ScriptState*) with CreateNull(Isolate*). Bug: 998994 Change-Id: I4462f6c02cdf5d9c69f327250c828848f1487a24 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1792025 Commit-Queue: Rika Fujimaki <rikaf@google.com> Reviewed-by:
Yuki Shiino <yukishiino@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Reviewed-by:
Keishi Hattori <keishi@chromium.org> Reviewed-by:
Kouhei Ueno <kouhei@chromium.org> Cr-Commit-Position: refs/heads/master@{#699320}
-
Rika Fujimaki authored
Replace ScriptValue(ScriptState*, v8::MaybeLocal<T>) with ScriptValue(Isolate*, v8::MaybeLocal<T>) because we removed ScriptValue::script_state_. Bug: 998994 Change-Id: Iba92035475aa6529f091700473e0246ba7f93f4e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1792022 Commit-Queue: Rika Fujimaki <rikaf@google.com> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Reviewed-by:
Yuki Shiino <yukishiino@chromium.org> Reviewed-by:
Keishi Hattori <keishi@chromium.org> Reviewed-by:
Kouhei Ueno <kouhei@chromium.org> Cr-Commit-Position: refs/heads/master@{#699319}
-
Ulan Degenbaev authored
This adds browse:tools:sheets:2019 story that loads a large spreadsheet and triggers column recalculation operations. Since most of the heavy operations are performed in a web worker, the story will be useful for optimizing JavaScript and garbage collection performance in web workers. The story also supports the new reported_by_page loading metrics to catch regressions in high-level metrics tracked by GSuite team. More context in b/139436165 Bug:chromium:1007178 Change-Id: Ie4921d00ddea3545ec27086fe990b423d96b8280 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1761597Reviewed-by:
Juan Antonio Navarro Pérez <perezju@chromium.org> Commit-Queue: Ulan Degenbaev <ulan@chromium.org> Cr-Commit-Position: refs/heads/master@{#699318}
-
Rune Lillesveen authored
The devtools protocol needs a generic way of forcing media feature values for matching media queries. This CL introduces the mechanism and adds the code for allowing override of the preferred color scheme for matching the prefers-color-scheme media query and computing the used value for the CSS color-scheme property. Bug: 1004647 Change-Id: I980522bcc606d65b51efd49ac2facbbf6a3dbd57 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1820798 Commit-Queue: Rune Lillesveen <futhark@chromium.org> Reviewed-by:
Morten Stenshorne <mstensho@chromium.org> Cr-Commit-Position: refs/heads/master@{#699317}
-
Dominick Ng authored
When these two tests are run together, one always fails. MSAN reveals that there is some use-after-free in these tests. Disable them for now. Recent flakiness: https://ci.chromium.org/p/chromium/builders/try/linux-chromeos-rel/384207 Flakiness dashboard: https://test-results.appspot.com/dashboards/flakiness_dashboard.html#testType=unit_tests&tests=PlatformUtilPosixTest. TBR=avi@chromium.org BUG=1007240 Change-Id: I961d3ed160821bd82299944cba2e827887fad7bd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1821700Reviewed-by:
Dominick Ng <dominickn@chromium.org> Commit-Queue: Dominick Ng <dominickn@chromium.org> Cr-Commit-Position: refs/heads/master@{#699316}
-
chromium-autoroll authored
https://android.googlesource.com/platform/external/perfetto.git/+log/a4ec0ef8e1b3..ed80390b177f git log a4ec0ef8e1b3..ed80390b177f --date=short --no-merges --format='%ad %ae %s' 2019-09-24 ilkos@google.com Get unsymbolized frames proto Created with: gclient setdep -r src/third_party/perfetto@ed80390b177f If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/perfetto-chromium-autoroll Please CC perfetto-bugs@google.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md TBR=perfetto-bugs@google.com Bug: None Change-Id: Iafdc788ea7bc348de08e51a94a46e7b3877b22fa Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1821739Reviewed-by:
chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Commit-Queue: chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#699315}
-
Santiago Aboy Solanes authored
This CL was created automatically with tools/perf/update_wpr script R=perezju@chromium.org Bug: 878390 Change-Id: I0524c6394bc101490c966abf6ec89ca27a25ffea Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1816470 Commit-Queue: Santiago Aboy Solanes <solanes@chromium.org> Auto-Submit: Santiago Aboy Solanes <solanes@chromium.org> Reviewed-by:
Juan Antonio Navarro Pérez <perezju@chromium.org> Cr-Commit-Position: refs/heads/master@{#699314}
-
Miyoung Shin authored
This change converts ContentIndexService mojom interface client in blink to use BrowserInterfaceBroker. Bug: 936482 Change-Id: I341bbb5f57c48d9a5595291a51fc432cd5e351e8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1813557 Commit-Queue: Miyoung Shin <myid.shin@igalia.com> Reviewed-by:
Oksana Zhuravlova <oksamyt@chromium.org> Reviewed-by:
Richard Knoll <knollr@chromium.org> Reviewed-by:
Kinuko Yasuda <kinuko@chromium.org> Cr-Commit-Position: refs/heads/master@{#699313}
-
François Beaufort authored
A new getSwapChainPreferredFormat method is added to GPUCanvasContext. It returns a promise that always resolves with "bgra8unorm" texture format for now. Another CL will change this later. Bug: 877147, 1007166 Change-Id: I6fbe0f0b2c0300946ffa092031e8271754f7a424 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1814822Reviewed-by:
Corentin Wallez <cwallez@chromium.org> Commit-Queue: François Beaufort <beaufort.francois@gmail.com> Cr-Commit-Position: refs/heads/master@{#699312}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/dc1ab03f429d..2ff9cca70ed5 Created with: gclient setdep -r src-internal@2ff9cca70ed5 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://skia-autoroll.corp.goog/r/src-internal-chromium-autoroll Please CC jbudorick@google.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md CQ_INCLUDE_TRYBOTS=luci.chrome.try:linux-chromeos-chrome TBR=jbudorick@google.com Bug: chromium:None Change-Id: I3c34ac37fa0d2645a897bb3250ba1724b7e32f84 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1821738Reviewed-by:
chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#699311}
-
Philip Jägenstedt authored
These tests failed to pass CQ here: https://chromium-review.googlesource.com/c/chromium/src/+/1820857/ https://ci.chromium.org/p/chromium/builders/try/linux-rel/198937 TBR=lukasza,alexmos Bug: 1007228 Bug: 1007229 Change-Id: If8ac51779c823ff1db57ac3069075c91d58e9825 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1821481Reviewed-by:
Philip Jägenstedt <foolip@chromium.org> Commit-Queue: Philip Jägenstedt <foolip@chromium.org> Cr-Commit-Position: refs/heads/master@{#699310}
-
v8-ci-autoroll-builder authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/778af2fd..da223de4 Please follow these instructions for assigning/CC'ing issues: https://v8.dev/docs/triage-issues Please close rolling in case of a roll revert: https://v8-roll.appspot.com/ This only works with a Google account. CQ_INCLUDE_TRYBOTS=luci.chromium.try:linux-blink-rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:linux_optional_gpu_tests_rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:mac_optional_gpu_tests_rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:win_optional_gpu_tests_rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel TBR=hablich@chromium.org,v8-waterfall-sheriff@grotations.appspotmail.com Change-Id: I4e0bec36bff502b43776f93461bec549c33b4565 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1821542Reviewed-by:
v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Commit-Queue: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#699309}
-
Mohamed Amir Yosef authored
There is only one implementation for this interface. It was introduced while migration to the NewPasswordFormManager. Since this migration has happened already, it's not needed anymore. TBR=vasilii@chromium.org Change-Id: Ib30739232c1055f70500a1e1df3d942d3200fd66 Bug: 949519 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1821078 Commit-Queue: Mohamed Amir Yosef <mamir@chromium.org> Reviewed-by:
Vadym Doroshenko <dvadym@chromium.org> Cr-Commit-Position: refs/heads/master@{#699308}
-
François Beaufort authored
This CL removes the dictionary member "label" from GPUPipelineDescriptorBase and GPUShaderModuleDescriptor as it is not used yet. Later, those will inherit from GPUObjectDescriptorBase that contain an optional member dictionary "label". Bug: 877147 Change-Id: I32c983e1a2fa4f0d3d1dc951978da457268626c0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1820740 Auto-Submit: François Beaufort <beaufort.francois@gmail.com> Commit-Queue: Corentin Wallez <cwallez@chromium.org> Reviewed-by:
Corentin Wallez <cwallez@chromium.org> Cr-Commit-Position: refs/heads/master@{#699307}
-
François Beaufort authored
This CL makes sure GPUVertexAttributeDescriptor is defined as in WebGPU spec https://gpuweb.github.io/gpuweb/#dictdef-gpuvertexattributedescriptor Bug: 877147 Change-Id: I16a74545351da60eb802d8e6691fe2a64cb8d64c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1821217 Auto-Submit: François Beaufort <beaufort.francois@gmail.com> Commit-Queue: Corentin Wallez <cwallez@chromium.org> Reviewed-by:
Corentin Wallez <cwallez@chromium.org> Cr-Commit-Position: refs/heads/master@{#699306}
-
François Beaufort authored
This CL renames GPUSamplerDescriptor compareFunction to compare as specified in https://gpuweb.github.io/gpuweb/#dictdef-gpusamplerdescriptor Bug: 877147 Change-Id: Ib5de8ffd802e40540049cedde9fccf0192dd4568 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1820741 Auto-Submit: François Beaufort <beaufort.francois@gmail.com> Commit-Queue: Corentin Wallez <cwallez@chromium.org> Reviewed-by:
Corentin Wallez <cwallez@chromium.org> Cr-Commit-Position: refs/heads/master@{#699305}
-
nancy authored
BUG=1005640 Change-Id: I6a1ecc2506df4d7f88e6767f71abcfdcc6f436c4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1816488 Commit-Queue: Nancy Wang <nancylingwang@chromium.org> Reviewed-by:
Alex Ilin <alexilin@chromium.org> Reviewed-by:
dstockwell <dstockwell@chromium.org> Reviewed-by:
Dominick Ng <dominickn@chromium.org> Cr-Commit-Position: refs/heads/master@{#699304}
-
Takashi Toyoshima authored
Since the launch plan was changed, it's better not to have an entry in the fieldtrial_testing_config. We turned down the feature on all platforms, except for cast, and will relaunch it at m79 with enterprise friendly mitigation. We continue to run affected tests at dedicated oor-cors fyi bots. Bug: 905971 Change-Id: I9270b149ce5bd4131c485c29a81cb1a2a4221c95 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1800137 Commit-Queue: Takashi Toyoshima <toyoshim@chromium.org> Reviewed-by:
Ilya Sherman <isherman@chromium.org> Cr-Commit-Position: refs/heads/master@{#699303}
-
Tim van der Lippe authored
We are going to update the version of Esprima to understand dynamic imports, but it turned out that this script was actually using a completely different version of Esprima. Update this path to resolve to our devtools-node-modules instead. Bug: 1006759 Change-Id: I1f0b791a5afe86e94258b7b3a044f7e756b923f6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1821559 Commit-Queue: Tim Van der Lippe <tvanderlippe@chromium.org> Commit-Queue: Yang Guo <yangguo@chromium.org> Auto-Submit: Tim Van der Lippe <tvanderlippe@chromium.org> Reviewed-by:
Yang Guo <yangguo@chromium.org> Cr-Commit-Position: refs/heads/master@{#699302}
-