- 15 Sep, 2016 40 commits
-
-
kmackay authored
The result of snd_pcm_status_get_avail() can be nonsensical if the PCM handle is in the XRUN state. BUG= internal b/31506355 Review-Url: https://codereview.chromium.org/2342913002 Cr-Commit-Position: refs/heads/master@{#418909}
-
sunyunjia authored
This test checks that when B is contained within A, move mouse in the following order: document->A->B->document->B->A should fire the mouseover and mouseout events in the order according to the spec, and the event should also bubble up the DOM tree to parent elements. Import the manual test from w3c and write and inject an automation script. Import wpt@a34dd650fcb77a0e3d18352cb98d63579be9b428 Using update-w3c-deps in Chromium a28851ca. Review-Url: https://codereview.chromium.org/2343873002 Cr-Commit-Position: refs/heads/master@{#418908}
-
gmanikpure authored
BUG=chromedriver:1503 Review-Url: https://codereview.chromium.org/2347553003 Cr-Commit-Position: refs/heads/master@{#418907}
-
pkotwicz authored
BUG=None Review-Url: https://codereview.chromium.org/2346513004 Cr-Commit-Position: refs/heads/master@{#418906}
-
khmel authored
This fixes several cases when multi-user manager and shelf controller is unable to restore Arc window correctly when the user changes his profile. BUG=b/31493349 TEST=Manually on a device. Arc app windows automatically restored when the user switch backs to main profile. Review-Url: https://codereview.chromium.org/2339313002 Cr-Commit-Position: refs/heads/master@{#418905}
-
vabr authored
path() is being deprecated, GetPath() has better checking against wrong use. For more context, see https://codereview.chromium.org/2275553005/. BUG=640599 TBR=rsleevi@chromium.org, alexclarke@chromium.org, vitalybuka@chromium.org, nyquist@chromium.org, boliu@chromium.org, benwells@chromium.org, sdefresne@chromium.org, rogerta@chromium.org, rockot@chromium.org, alokp@chromium.org Review-Url: https://codereview.chromium.org/2322573002 Cr-Commit-Position: refs/heads/master@{#418904}
-
joostouwerling authored
It was never added to histograms.xml BUG=643546 Review-Url: https://codereview.chromium.org/2338363004 Cr-Commit-Position: refs/heads/master@{#418903}
-
dmazzoni authored
If RenderFrameImpl deletes a RenderAccessibilityImpl and then recreates another one very quickly, that second RenderAccessibilityImpl can get confused when it receives an ACK intended for the previous instance. Fix this by passing an ACK token from the renderer to browser and ignoring messages with the wrong token. This only caused issues when DCHECKs are enabled. BUG=646588 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_site_isolation Review-Url: https://codereview.chromium.org/2341503002 Cr-Commit-Position: refs/heads/master@{#418902}
-
agrieve authored
BUG=645716 Review-Url: https://codereview.chromium.org/2334213002 Cr-Commit-Position: refs/heads/master@{#418901}
-
kojii authored
This patch makes the 'auto' value invalid for the 'hyphens' property on platforms that do not support, as discussed in blink-dev[1]. [1] https://groups.google.com/a/chromium.org/d/msg/blink-dev/LsnvY7FFrY0/XfAcOFYYAAAJ BUG=605840 Review-Url: https://codereview.chromium.org/2342433002 Cr-Commit-Position: refs/heads/master@{#418900}
-
jmadill authored
BUG=618447 TBR=zmo@chromium.org 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;master.tryserver.chromium.android:android_optional_gpu_tests_rel Review-Url: https://codereview.chromium.org/2345633003 Cr-Commit-Position: refs/heads/master@{#418899}
-
fgorski authored
BUG=645522 Review-Url: https://codereview.chromium.org/2331343007 Cr-Commit-Position: refs/heads/master@{#418898}
-
derekjchow authored
CastMediaBlocker is a class which can prevent media from being played on a web page. BUG=NONE TEST=ChromecastShellMediaBlockingBrowserTest Review-Url: https://codereview.chromium.org/2330243002 Cr-Commit-Position: refs/heads/master@{#418897}
-
sdefresne authored
Was reverted in https://codereview.chromium.org/1893353002/ and the underlying issue has since been fixed. This is required to enable ASan and coverage on simulators (and other tools like UBSan, TSan, ...). BUG=450379,602649 Review-Url: https://codereview.chromium.org/2344573003 Cr-Commit-Position: refs/heads/master@{#418896}
-
bradnelson authored
BUG=None TEST=None R=bbudge@chromium.org,sbc@chromium.org CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_nacl_sdk;master.tryserver.chromium.mac:mac_nacl_sdk Review-Url: https://codereview.chromium.org/2337973003 Cr-Commit-Position: refs/heads/master@{#418895}
-
tommycli authored
Renames Plugins => Flash since Flash is the last real plugin as of M55. Also, when the kPreferHtmlOverPlugins feature flag is on, remove the Detect option and make it look the same as any other ASK-default content type. BUG=642564 Review-Url: https://codereview.chromium.org/2291323003 Cr-Commit-Position: refs/heads/master@{#418894}
-
kenrb authored
SitePerProcessBrowserTest.CrossProcessMouseEnterAndLeaveTest is failing on the Mac continuous build. The logs appear to show that the event targeting is missing the correct frames, which might be because of the inverted y-axis affecting GetViewBounds(). This CL should fix that problem. TBR=avi@chromium.org BUG=647202 Review-Url: https://codereview.chromium.org/2346843002 Cr-Commit-Position: refs/heads/master@{#418893}
-
svillar authored
On crrev.com/358816, among other things, we added a second pass of the track sizing algorithm for rows in order to properly compute row sizes when the height was indefinite. We did that in order to have a symmetrical implementation for columns and rows, but unfortunatelly that was not correct. Apart from issuing incorrect results in some cases it created a huge performance issue in the case of nested grids because we were exponentially increasing the amount of executions of the track sizing algorithm. The attached performance test shows a 350% improvement with the patch. BUG=619629 Review-Url: https://codereview.chromium.org/2339983002 Cr-Commit-Position: refs/heads/master@{#418892}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/6f1ef12e..fa07ac00 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/2347653002 Cr-Commit-Position: refs/heads/master@{#418891}
-
avi authored
It's unused. BUG=555865 R=bnc@chromium.org Review-Url: https://codereview.chromium.org/2339223003 Cr-Commit-Position: refs/heads/master@{#418890}
-
agrieve authored
According to https://www.chromium.org/developers/testing/fake-bidi, it is no longer usable via --locale_pak, and so is used only by the (disabled) test bidi_checker_web_ui_test.cc. BUG=645716 Review-Url: https://codereview.chromium.org/2339513002 Cr-Commit-Position: refs/heads/master@{#418889}
-
sanjoy.pal authored
Specification https://w3c.github.io/browser-payment-api/ BUG=640847 Review-Url: https://codereview.chromium.org/2340743002 Cr-Commit-Position: refs/heads/master@{#418888}
-
derat authored
Fix a (long-standing?) race where chromeos::PowerManagerClient could notify RendererFreezer that a suspend attempt was imminent *after* already telling it that the attempt was done. Also make PowerManagerClient not notify powerd about regular or dark suspend readiness after it's already seen a SuspendDone signal. Add a bunch of unit tests exercising this code, too, and rework the comments on some previously-added tests. BUG=646912 Review-Url: https://codereview.chromium.org/2340153002 Cr-Commit-Position: refs/heads/master@{#418887}
-
skia-deps-roller authored
https://chromium.googlesource.com/skia.git/+log/09b352f75f95..e839e78443e4 $ git log 09b352f75..e839e7844 --date=short --no-merges --format='%ad %ae %s' 2016-09-15 caryclark quad and conic do not intersect 2016-09-15 bsalomon Remove "f" suffix from literal in LCD DF text shader. 2016-09-15 brianosman Fix SampleApp compilation with skia_gpu=0 2016-09-15 reed add helpers for using SkData with picture serialization 2016-09-15 brianosman Bundle common arguments to GrGradientEffect creation CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel TBR=djsollen@google.com Review-Url: https://codereview.chromium.org/2334223008 Cr-Commit-Position: refs/heads/master@{#418886}
-
geofflang authored
TBR=zmo@chromium.org 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;master.tryserver.chromium.android:android_optional_gpu_tests_rel Review-Url: https://codereview.chromium.org/2346753003 Cr-Commit-Position: refs/heads/master@{#418885}
-
martiniss authored
Review-Url: https://codereview.chromium.org/2335343005 Cr-Commit-Position: refs/heads/master@{#418884}
-
chrome://castpaulmeyer authored
The provided policy for the cast UI was "object-src *", which used to include "chrome:" until a recent CL changed the use of “*” from a blacklist (that did not include "chrome:") to a whitelist (that still does not include "chrome:"). Because of this, the policy just needs to be updated to specifically allow "chrome:" now. BUG=634168 Review-Url: https://codereview.chromium.org/2347503002 Cr-Commit-Position: refs/heads/master@{#418883}
-
martiniss authored
Roller got stuck because of no OWNER, and there are reverts in here we want to ignore. build: ba9de88 Roll recipe dependencies (trivial). 0c792ad Roll recipe dependencies (nontrivial). 36ef137 Add trigger for new chromium.perf.fyi Win Builder. c97a211 Revert of Enable the ninja up-to-date check for Android builders (patchset #1 id:1 of https://codereview.chromium.org/2338203004/ ) a30a2b5 Windows 64-bit builder for chromium.perf.fyi. 9ef12eb Enable the ninja up-to-date check for Android builders 470dc77 Enable LogDog for dart. 6d930de Disable goma on 'ThinLTO Linux ToT'. 9c621ef adding attributes to builders that build chromium for swarming bots. 5c2611c Skia: port the rest of the Android bots to GN 741d9d4 V8: Fix gn args for non-MB arm builders ac3894c libyuv: Add Android Testers a79a272 V8: Auto-reboot macs to solve ntp issues efcfa09 When retrying a failing swarming gtest without the patch, don't pass on the original --test-launcher-filter-file argument. 6e947e5 Bump LogDog pin for fleet. 89b4922 Buildbot PubSub: Also include pending build info 5d9a4bb Roll recipe dependencies (trivial). 6e8c812 Add 4 more bots to optional_slaves1 4348c03 Fix alias url/text fields. 50d0e85 Enable LogDog on chromium.gatekeeper. b81308c BuildBot: Add aliases to build step dict. 05fe658 buildbot: Don't load ts_mon if TESTING_MASTER is set c3e75a1 LogDog: bump canary BuildBot CIPD pin. 15faceb Merge recipes in client.nacl.sdk.recipe_autogen b46e008 Cleanup NaCl SDK recipes 6fd7041 chromium.android: Enable swarming on Marshmallow 64 bit Tester f683608 Roll recipe dependencies (trivial). 0fc6b2e Use api.chromium.compile() in client.nacl.sdk.recipe_autogen.py 440de8c Roll recipe dependencies (nontrivial). Review-Url: https://codereview.chromium.org/2340963002 Cr-Commit-Position: refs/heads/master@{#418882}
-
xiyuan authored
Speculative fix of the notification close crash that the underlying notification surface is changed after the floating close button is created. BUG=646634 Review-Url: https://codereview.chromium.org/2338423002 Cr-Commit-Position: refs/heads/master@{#418881}
-
chrome://appsdbeam authored
R=nzolghadr@chromium.org BUG=647095 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:closure_compilation Review-Url: https://codereview.chromium.org/2340203002 Cr-Commit-Position: refs/heads/master@{#418880}
-
kylechar authored
There is a bug destroying one of the XWindows created for the VSyncProvider. When that bug is fixed the default should be GLX again. BUG=646982 Review-Url: https://codereview.chromium.org/2339413002 Cr-Commit-Position: refs/heads/master@{#418879}
-
maxbogue authored
Things within a component should have a namespace that matches its name. BUG=646685 TBR=jam Review-Url: https://codereview.chromium.org/2343463003 Cr-Commit-Position: refs/heads/master@{#418878}
-
mef authored
Review-Url: https://codereview.chromium.org/2332333005 Cr-Commit-Position: refs/heads/master@{#418877}
-
alito authored
This merges ResetProfileSettingsOverlay and TriggeredResetProfileSettingsOverlay into a single class. BUG=636435 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:closure_compilation Review-Url: https://codereview.chromium.org/2334003006 Cr-Commit-Position: refs/heads/master@{#418876}
-
peria authored
This is a mechanical change, using $ sed -i -e ''s/\([Uu]\)nscopeable/\1nscopable/g' * Plus, updates a test file LayoutTests/fast/js/unscop(e)able.html to use testharness.html. It also removes the expected file. BUG=647133 Review-Url: https://codereview.chromium.org/2341673004 Cr-Commit-Position: refs/heads/master@{#418875}
-
csharrison authored
The histograms are obsolete, and this code walks the frame tree! BUG=595742 Review-Url: https://codereview.chromium.org/2332423003 Cr-Commit-Position: refs/heads/master@{#418874}
-
jbroman authored
Revert of [TTS] Gather surrounding text on Tap before any UX. (patchset #13 id:240001 of https://codereview.chromium.org/2211353002/ ) Reason for revert: Suspected of causing try flakes in ContextualSearchManagerTest#testPromoTapCount: https://bugs.chromium.org/p/chromium/issues/detail?id=647210 Original issue's description: > [TTS] Gather surrounding text on Tap before any UX. > > Extract the text tapped on to use as a signal in Tap Suppression. > The text is extracted before any UX is displayed in order to allow the > tap to be totally ignored when appropriate. Feeding the surrounding > text into the logic of TTS will be done separately. > > This adds several files that are part of the 2016-refactoring. > See crbug.com/624609 and go/cs-refactoring-2016. > > This CL is part of the refactoring-2016 effort, see go/cs-refactoring-2016 > for details. > > BUG=634136, 624609 > > Committed: https://crrev.com/3f11e42880b1b7b6608e2d57fa538552318367ae > Cr-Commit-Position: refs/heads/master@{#418464} TBR=twellington@chromium.org,pedrosimonetti@chromium.org,tedchoc@chromium.org,donnd@chromium.org # Not skipping CQ checks because original CL landed more than 1 days ago. BUG=634136, 624609 Review-Url: https://codereview.chromium.org/2348443002 Cr-Commit-Position: refs/heads/master@{#418873}
-
jbroman authored
BUG=647058,645609 TBR=mlamouri@chromium.org Review-Url: https://codereview.chromium.org/2341073002 Cr-Commit-Position: refs/heads/master@{#418872}
-
blink-w3c-test-autoroller authored
TBR=qyearsley@chromium.org Review-Url: https://codereview.chromium.org/2340983003 Cr-Commit-Position: refs/heads/master@{#418871}
-
mstensho authored
The problem was that a rectangle was shifted by offsetFromColumnSet() after having been made physical. However, offsetFromColumnSet() is semi-logical (flipped block direction coordinate, like e.g. LayoutBox::m_frameRect), so we need to add it in before flipping the rectangle. This caused all fragmentainer groups but the first one to be translated incorrectly. Review-Url: https://codereview.chromium.org/2344813003 Cr-Commit-Position: refs/heads/master@{#418870}
-