- 27 Aug, 2016 29 commits
-
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/5ce28276..b93459dd Please follow these instructions for assigning/CC'ing issues: https://github.com/v8/v8/wiki/Triaging%20issues Please close rolling in case of a roll revert: https://v8-roll.appspot.com/ This only works with a Google account. CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel TBR=hablich@chromium.org,machenbach@chromium.org,littledan@chromium.org,vogelheim@chromium.org Review-Url: https://codereview.chromium.org/2283283002 Cr-Commit-Position: refs/heads/master@{#414894}
-
luoe authored
BUG=556508 Review-Url: https://codereview.chromium.org/2254683003 Cr-Commit-Position: refs/heads/master@{#414893}
-
skia-deps-roller authored
https://chromium.googlesource.com/skia.git/+log/9d08cbc8c613..79418093c1bb $ git log 9d08cbc8c..79418093c --date=short --no-merges --format='%ad %ae %s' 2016-08-26 caryclark if the winding of the top can't be computed, give up 2016-08-26 mtklein GN: support compiler_prefix, use it for ccache on bots. 2016-08-26 halcanary SkPDF: Glyph validation change 2016-08-26 fmalita drawBitmapRect() should not touch the CTM when mask filters are present 2016-08-26 msarett Reduce CPU overhead on drawRegion() 2016-08-26 brianosman Fix angle build on Ubuntu 2016-08-26 bungeman Expat target exports includes instead of FreeType. 2016-08-26 mtklein Add Mac NDK asset, and fetch NDK on Android compile bots. 2016-08-26 egdaniel Don't add the resolve attachment to vulkan render passes. 2016-08-26 ethannicholas fixed 'corners' of paths in GrAAConvexTessellator 2016-08-26 mtklein add an asset for the Linux Android NDK. 2016-08-26 bsalomon Converts a drawPaint through a rrect clip to a drawRRect in GrDrawContext. 2016-08-26 brianosman Update ANGLE to latest as of August 25, 2016 2016-08-26 fmalita Remove SVG serialization suppressions 2016-08-26 fmalita Add imagemasksubset GM 2016-08-26 drott Restrict supported font formats in Chrome context 2016-08-26 robertphillips Move work from ctor to onOnceBeforeDraw in ShowMipLevel GMs 2016-08-26 caryclark avoid generating degenerate conic from arc 2016-08-26 vjiaoblack Added distance attenuation and diffuse shading to PointLights 2016-08-26 jvanverth Fix for fat stroked roundrects. 2016-08-26 mtklein GN: mac host and armv7 target 2016-08-26 bungeman SkOSFile instead of dirent in android font parser. 2016-08-26 bsalomon Fix bounds check in grshape test GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2274113004 2016-08-26 msarett drawRegion() cleanups 2016-08-26 robertphillips Ignore fill when stroke & filling convex line-only paths 2016-08-25 msarett GPU implementation of drawRegion() 2016-08-25 mtklein GN: Android 2016-08-25 msarett Add drawRegion() API to SkCanvas 2016-08-25 egdaniel Add support for getting vulkan descriptor sets without a GrVkUniformHandler. 2016-08-25 liyuqian Do not spam the debugging information 2016-08-25 bsalomon Respecify SkCanvas::drawArc, consolidate conversion to SkPath, add GM for oddball drawArcs 2016-08-25 caryclark path ops stream-lining 2016-08-25 halcanary SkDrawCommand: hinting 2016-08-25 jcgregorio BUILD.gn: Fix fiddle raster. 2016-08-25 halcanary SkPDF: Stop `#include PREPROCESSOR_DEFINE` pattern 2016-08-25 brianosman Remove pixel config fallback - failing is a better option. 2016-08-25 mtklein update Android auto-detection. 2016-08-25 fmalita Reland: Experimental parsing expression grammar (PEG) template library 2016-08-25 jvanverth Add Ganesh support for circular roundrects with strokes > 2*radii. 2016-08-25 bsalomon Make bleed GM produce consistent bitmaps on all platforms GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2264133003 2016-08-25 vjiaoblack Made shadows blurry (thru implementing variance mapping) 2016-08-25 hcm Update Skia milestone to 55 2016-08-25 jvanverth Add fat stroke test case to roundrects GM. 2016-08-25 fmalita Revert of Experimental parsing expression grammar (PEG) template library (patchset #8 id:140001 of https://codereview.chromium.org/2271743002/ ) 2016-08-25 caryclark add pathops debugging 2016-08-25 anmittal Add neon and crc32 sources for aarch64 BUG=641478,625995 CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel TBR=bungeman@google.com Review-Url: https://codereview.chromium.org/2284953003 Cr-Commit-Position: refs/heads/master@{#414892}
-
michaelpg authored
Wrap the language settings overflow menu in a <cr-shared-menu>. The contents of the language detail page will be moved into this menu, so it would be better not to stamp it once for each item in the list of enabled languages. BUG=630982 TEST=SettingsLanguagesPageBrowserTest R=stevenjb@chromium.org CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:closure_compilation Review-Url: https://codereview.chromium.org/2277633003 Cr-Commit-Position: refs/heads/master@{#414891}
-
bshe authored
This CL implements the following: 1. Adds a new activity called VrActivity. It extends from AsyncInitializationActivity and can only be launched from Daydream app. 2. Adds a VrShell and its native part. VrShell has a GLSurfaceView as presentation view for drawing left and right images and an inheriated(from GvrLayout) scanline racing view(another GLSurfaceView). 3. Created a texture quad that is reserved for compositor to use to output content frames. The quad is positioned at (0.0, 0.0, -1.0) Known issue: 1. The quad is black as we haven't hookup a compositor to draw frames 2. tabs are not shared with ChromeTabbedActivity To test this, add "enable_vr_shell=true" in your gn args. BUG=638642 Review-Url: https://codereview.chromium.org/2252103002 Cr-Commit-Position: refs/heads/master@{#414890}
-
recipe-roller authored
This is an automated CL created by the recipe roller. This CL rolls recipe changes from upstream projects (e.g. depot_tools) into downstream projects (e.g. tools/build). More info is at https://goo.gl/zkKdpD. Use https://goo.gl/noib3a to file a bug (or complain) build: https://crrev.com/26635e19ea94362a07e3e498dabab289cbd888ec Remove svn test from run_presubmit recipe module (agable@chromium.org) https://crrev.com/627393829292ba158803840bc45d5f018b981115 Fix assumption about buildbucket.put response. (robertocn@chromium.org) https://crrev.com/2851a9afcd8707c34b7c10583ad9732bef4c506f Return build config in iOS recipe module (smut@google.com) https://crrev.com/b0548be157b603ffe2a914e9bc158aaf4f1cfbf4 Update config for renamed Win 10 builder. (mmoss@chromium.org) https://crrev.com/065716e5a38e865204470df33d4ef783b5b41790 Roll recipe dependencies (trivial). (recipe-roller@chromium.org) https://crrev.com/cff87e6a98e85207aba12e0f73cc7bf7e779b002 chromium_android: Add device affinity to links (martiniss@chromium.org) https://crrev.com/b2dd122deb548234cf62c7e385958f8c784b6b5c Fixed a bug and script will not crash anymore when there is no test results. (hzl@google.com) depot_tools: https://crrev.com/7090f652d180eeff2663e3e3091d5db14123284c Remove all references to GIT_MODE from depot_tools (agable@chromium.org) TBR=martiniss@chromium.org,phajdan.jr@chromium.org BUG=472386,592777,640991,640915,598405,640251 Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Review-Url: https://codereview.chromium.org/2284653003 Cr-Commit-Position: refs/heads/master@{#414889}
-
spqchan authored
Added back mouse tracking to fix an edge case where the menu bar disappears when but the mouse is still hovering the toolbar. The tracking area is only used to keep the toolbar active when this happens. The toolbar will hide when the mouse leaves the tracking area. BUG=639562 Review-Url: https://codereview.chromium.org/2272783002 Cr-Commit-Position: refs/heads/master@{#414888}
-
dougarnett authored
BUG=641411 Review-Url: https://codereview.chromium.org/2282973003 Cr-Commit-Position: refs/heads/master@{#414887}
-
melandory authored
BUG=609747, 641037 Review-Url: https://codereview.chromium.org/2286883002 Cr-Commit-Position: refs/heads/master@{#414886}
-
shess authored
The major reason for sql::Recover::Begin() to fail is in the statement attaching the original database to the recovery database. I believe this is because of SQLITE_NOTADB. This is to verify that hypothesis. If the hypothesis is true, then the best course of action is to Raze() the database, as SQLITE_NOTADB means that some or all of the SQLite header data appears to be garbage. BUG=597785 R=michaeln@chromium.org Review-Url: https://codereview.chromium.org/2274883003 Cr-Commit-Position: refs/heads/master@{#414885}
-
tbansal authored
After the default job finishes proxy resolution, it queries ProxyDelegate on whether the resolved proxy supports an alternative proxy server or not. If yes, a new job is started. This job is provided the alternative proxy server, and races with the main job. If the alternative proxy server is found to be broken, the ProxyDelegate is notified. Changes to DataReductionProxyDelegate will be in a subsequent CL. BUG=343579 Review-Url: https://codereview.chromium.org/2260623002 Cr-Commit-Position: refs/heads/master@{#414884}
-
jdufault authored
TEST=manual BUG=641603 Review-Url: https://codereview.chromium.org/2280273002 Cr-Commit-Position: refs/heads/master@{#414883}
-
thomasanderson authored
BUG=634085 Review-Url: https://codereview.chromium.org/2163623003 Cr-Commit-Position: refs/heads/master@{#414882}
-
chrome-cron authored
Cr-Commit-Position: refs/heads/master@{#414881}
-
jianli authored
Revert of Move gyp-win-tool to the GN Windows toolchain. (patchset #6 id:100001 of https://codereview.chromium.org/2287603003/ ) Reason for revert: https://build.chromium.org/p/chromium.chrome/builders/Google%20Chrome%20Win/builds/10319/steps/compile/logs/stdio Original issue's description: > Move gyp-win-tool to the GN Windows toolchain. > > Renames it tool_wrapper.py but otherwise keeps it unchanged from the original > https://chromium.googlesource.com/external/gyp.git/+/master/pylib/gyp/win_tool.py > > I changed internal references to itself to tool_wrapper.py, and split the internal strings containing the word "Copyright" (which it uses to filter tool output) to avoid triggering the copyright presubmit check. > > Changes the build to refer to the file in-place rather than copying it to the build directory which was confusing. > > The tool runs itself in the link_manifest step. Since the file is no longer copied to what will be the current directory when linking, I believe this will be broken. But the GN build does not use the manifest linking command. To keep changes minimal, I kept this code in for now. > > Committed: https://crrev.com/6afaa104b1fa8c6caee4e53b2e37142832ec9f9e > Cr-Commit-Position: refs/heads/master@{#414859} TBR=scottmg@chromium.org,dpranke@chromium.org,brettw@chromium.org # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true Review-Url: https://codereview.chromium.org/2287833002 Cr-Commit-Position: refs/heads/master@{#414880}
-
nasko authored
This CL enables isolated extensions. Removal of the command line flag and the field trial will be done in a separate CL. BUG=545200 Review-Url: https://codereview.chromium.org/2285883002 Cr-Commit-Position: refs/heads/master@{#414879}
-
groby authored
Hunspell cannot handle invalid UTF8. Chrome makes sure that all data is in valid UTF8 - this CL enforces the same for the fuzzer. BUG=none R=mmoroz@chromium.org Review-Url: https://codereview.chromium.org/2223603002 Cr-Commit-Position: refs/heads/master@{#414878}
-
lukasza authored
BUG=598141 Review-Url: https://codereview.chromium.org/2246263002 Cr-Commit-Position: refs/heads/master@{#414877}
-
alph authored
Review-Url: https://codereview.chromium.org/2286963002 Cr-Commit-Position: refs/heads/master@{#414876}
-
mattm authored
Also changes FindTrustAnchorsByNormalizedName to FindTrustAnchorsForCert, as some different implementations may do normalization differently. By passing in the target cert, the implementation can decide whether to use the pre-normalized issuer or the raw one. BUG=635203 Review-Url: https://codereview.chromium.org/2266333002 Cr-Commit-Position: refs/heads/master@{#414875}
-
wez authored
If you have lots of processes running then N/A makes the available stats stand out less clearly from the not-available or not-applicable fields. Using a dash instead makes it easier to glance across the available stats. Review-Url: https://codereview.chromium.org/2175003003 Cr-Commit-Position: refs/heads/master@{#414874}
-
bpastene authored
BUG= TBR=jbudorick@chromium.org Review-Url: https://codereview.chromium.org/2282893002 Cr-Commit-Position: refs/heads/master@{#414873}
-
servolk authored
Added a new multi-track (2 audio + 2 video tracks) .mp4 file for tests and MP4StreamParser to handle multiple tracks properly. BUG=249427, 249428 Review-Url: https://codereview.chromium.org/2254733006 Cr-Commit-Position: refs/heads/master@{#414872}
-
dtseng authored
This was a recent regression. Logic was added to make a top level editable a container (so that navigation would descend into it). However, we were previously using the container predicate to decide whether or not to set focus; this prevents focus() on roots which sometimes triggered other side effects such as focusing a descendant. Make the focus precondition check the structuralContainer predicate instead. BUG=640587 TEST=chromevox_tests Review-Url: https://codereview.chromium.org/2273373002 Cr-Commit-Position: refs/heads/master@{#414871}
-
yusufo authored
Playing this animation right after the task transition animation causes a lot of jank. Removing it for external intents. BUG=641592 Review-Url: https://codereview.chromium.org/2280233004 Cr-Commit-Position: refs/heads/master@{#414870}
-
pdfium-deps-roller authored
https://pdfium.googlesource.com/pdfium.git/+log/3e98158a6c47..35396df876cb $ git log 3e98158a6..35396df87 --date=short --no-merges --format='%ad %ae %s' 2016-08-26 vmpstr build_gyp: Remove deprecated flag, which is enabled by default. 2016-08-26 npm Revert "Remove the document tagged code as it is unused." 2016-08-26 tsepez Rework CFX_CountRef in terms of CFX_RetainPtr. 2016-08-26 npm Move the classes in fpdf_text_int.cpp into their own files 2016-08-26 thestig Roll DEPS for skia to 3bf7509c. 2016-08-26 thestig Roll DEPS for icu to 2341038b. 2016-08-26 thestig Roll DEPS for clang to 797371be. TBR=dsinclair@chromium.org Review-Url: https://codereview.chromium.org/2284023002 Cr-Commit-Position: refs/heads/master@{#414869}
-
alexmos authored
BUG=626802 Review-Url: https://codereview.chromium.org/2280473002 Cr-Commit-Position: refs/heads/master@{#414868}
-
oysteine authored
Reland of Background tracing: Added config option for repeated trigger behavior (patchset #1 id:1 of https://codereview.chromium.org/2265423002/ ) Reason for revert: Re-landing with fix Original issue's description: > Revert of Background tracing: Added config option for repeated trigger behavior (patchset #1 id:1 of https://codereview.chromium.org/2247033005/ ) > > Reason for revert: > Test is flaky on builder "Android Tests" > > Builder: https://build.chromium.org/p/chromium.linux/builders/Android%20Tests > > Failure: > https://build.chromium.org/p/chromium.linux/builders/Android%20Tests/builds/30899 > > Output: > BackgroundTracingManagerBrowserTest.ReactiveSecondTriggerIgnored (run #1): > [ RUN ] BackgroundTracingManagerBrowserTest.ReactiveSecondTriggerIgnored > [WARNING:dns_config_service_posix.cc(316)] Failed to read DnsConfig. > [ERROR:devtools_http_handler.cc(228)] Cannot start http server for devtools. Stop devtools. > ../../content/browser/tracing/background_tracing_manager_browsertest.cc:1210: Failure > Value of: BackgroundTracingManagerImpl::GetInstance()->IsTracingForTesting() > Actual: false > Expected: true > ../../content/browser/tracing/background_tracing_manager_browsertest.cc:95: Failure > Value of: value > Actual: true > Expected: expected > Which is: false > [ FAILED ] BackgroundTracingManagerBrowserTest.ReactiveSecondTriggerIgnored, where TypeParam = and GetParam() = (188 ms) > [----------] 1 test from BackgroundTracingManagerBrowserTest (188 ms total) > > Original issue's description: > > Background tracing: Add config option to control whether or not to stop reactive tracing when a repeated trigger occurs > > > > R=simonhatch@chromium.org > > BUG=637129 > > > > Committed: https://crrev.com/fba230c24383ae08ea6d924401bdff81b46c7108 > > Cr-Commit-Position: refs/heads/master@{#412577} > > TBR=simonhatch@chromium.org,ssid@chromium.org,petrcermak@chromium.org,oysteine@chromium.org > # Not skipping CQ checks because original CL landed more than 1 days ago. > BUG=637129 > > Committed: https://crrev.com/ccb0f2af13bf3cc4ebdcdd7a08e19b281d788897 > Cr-Commit-Position: refs/heads/master@{#413627} TBR=simonhatch@chromium.org,ssid@chromium.org,petrcermak@chromium.org,megjablon@chromium.org # Not skipping CQ checks because original CL landed more than 1 days ago. BUG=637129 Review-Url: https://codereview.chromium.org/2285853002 Cr-Commit-Position: refs/heads/master@{#414867}
-
michaelpg authored
The sliding subpages in neon-animated-pages (settings-animated-pages) shouldn't protrude past the edges of the card when sliding left/right. A stacking context ensures this without screwing up positioning of the card. BUG=640315 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:closure_compilation Review-Url: https://codereview.chromium.org/2264353004 Cr-Commit-Position: refs/heads/master@{#414866}
-
- 26 Aug, 2016 11 commits
-
-
alokp authored
BUG=641559 Review-Url: https://codereview.chromium.org/2283193002 Cr-Commit-Position: refs/heads/master@{#414865}
-
vmpstr authored
TBR=kbr@chromium.org BUG=638744 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel Review-Url: https://codereview.chromium.org/2283963003 Cr-Commit-Position: refs/heads/master@{#414864}
-
recipe-roller authored
This is an automated CL created by the recipe roller. This CL rolls recipe changes from upstream projects (e.g. depot_tools) into downstream projects (e.g. tools/build). More info is at https://goo.gl/zkKdpD. Use https://goo.gl/noib3a to file a bug (or complain) build: https://crrev.com/8cd6b383748124dfa3c7f27ab70ee75377bf16f6 Roll recipe dependencies (trivial). (recipe-roller@chromium.org) https://crrev.com/0fb3089acff0b491685af54a4f90e0a4de693e39 Add dtu to recipes/bisection OWNERS. (dtu@chromium.org) depot_tools: https://crrev.com/0b7cf885e03dcabae34c29e2a751a88ac9af9d7f Remove Deps2Git references from bot_update.py (hinoka@google.com) TBR=martiniss@chromium.org,phajdan.jr@chromium.org BUG= Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Review-Url: https://codereview.chromium.org/2282883004 Cr-Commit-Position: refs/heads/master@{#414863}
-
thomasanderson authored
Build and link against the Ubuntu Precise amd64 sysroot on Desktop Chrome OS instead of always using the system libraries. BUG=638394 Committed: https://crrev.com/c575bbcd130b38994e36b0a97bfe5ceea954a643 Review-Url: https://codereview.chromium.org/2272273002 Cr-Original-Commit-Position: refs/heads/master@{#414564} Cr-Commit-Position: refs/heads/master@{#414862}
-
scottmg authored
This was added so that chrome_elf wouldn't try to initialize crash reporting when loaded in browser_tests, etc. But subsequently the dependencies have been cleaned up, and browser_tests doesn't link chrome_elf, so shouldn't be necessary any more. Also messes up the obscure case when people rename chrome.exe. R=robertshield@chromium.org, ananta@chromium.org BUG=604923, crashpad:106, 568664 Review-Url: https://codereview.chromium.org/2279943002 Cr-Commit-Position: refs/heads/master@{#414861}
-
denniskempin authored
The palm suppression is enabled by an internal stylus enabled TouchEventConverterEvdev via a callback to InputDeviceFactoryEvdev. When in palm suppression mode, all internal touchscreen devices will be disabled. Before a touchscreen would lift all touches when disabled, and re-initialize when re-enabled. To prevent the unnecessary ioctls the code has been updated to force cancel all touches while disabled, but continue to read and sync the internal touch state. This will also make sure that touches that went down while disabled, will not suddenly show up after enabling and continue to stay cancelled until lifted. BUG=636458 Review-Url: https://codereview.chromium.org/2263693003 Cr-Commit-Position: refs/heads/master@{#414860}
-
brettw authored
Renames it tool_wrapper.py but otherwise keeps it unchanged from the original https://chromium.googlesource.com/external/gyp.git/+/master/pylib/gyp/win_tool.py I changed internal references to itself to tool_wrapper.py, and split the internal strings containing the word "Copyright" (which it uses to filter tool output) to avoid triggering the copyright presubmit check. Changes the build to refer to the file in-place rather than copying it to the build directory which was confusing. The tool runs itself in the link_manifest step. Since the file is no longer copied to what will be the current directory when linking, I believe this will be broken. But the GN build does not use the manifest linking command. To keep changes minimal, I kept this code in for now. Review-Url: https://codereview.chromium.org/2287603003 Cr-Commit-Position: refs/heads/master@{#414859}
-
sammiequon authored
Changed the pin keyboard to match the specs at https://folio.googleplex.com/cros-core-ui/spec#%2F5.1%20-%20Start%20screen%20Pin%20lock%20pods.png%3Fz=width, minus the submit button on the normal pod and the errors on the pin keyboard. BUG=627222 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:closure_compilation Review-Url: https://codereview.chromium.org/2222583002 Cr-Commit-Position: refs/heads/master@{#414858}
-
lukasza authored
Revert of Adding Site Isolation Win bot filtering for WindowOpenPanelTest.WindowOpenFocus. (patchset #1 id:1 of https://codereview.chromium.org/2269523003/ ) Reason for revert: The filter file is apparently not needed anymore: despite the fact that the test got renamed in r413759, we are not seeing failures in the WindowOpenFocus test in the latest builds on Site Isolation Win bot. Original issue's description: > Adding Site Isolation Win bot filtering for WindowOpenPanelTest.WindowOpenFocus. > > BUG=639510 > > Committed: https://crrev.com/a98073ac85514395939268f9d71a5d609867d450 > Cr-Commit-Position: refs/heads/master@{#413773} TBR=creis@chromium.org # Not skipping CQ checks because original CL landed more than 1 days ago. BUG=639510 Review-Url: https://codereview.chromium.org/2287743002 Cr-Commit-Position: refs/heads/master@{#414857}
-
hans authored
BUG=636109 Review-Url: https://codereview.chromium.org/2281963002 Cr-Commit-Position: refs/heads/master@{#414856}
-
dschuyler authored
This CL is a follow-up to CL 2273083002 where the <h2> sub-labels were updated to the current mocks. The displays sub-page (chromeos only) also needed to be updated. BUG=638461 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:closure_compilation Review-Url: https://codereview.chromium.org/2283933002 Cr-Commit-Position: refs/heads/master@{#414855}
-