- 29 Nov, 2016 40 commits
-
-
sergeyu authored
Previously when Ctrl-C is pressed the script would print a message that says it was interrupted, but wouldn't actually quit. Added explicit exit(1) call in sigint_handler() to ensure it quits as expected. Review-Url: https://codereview.chromium.org/2537673002 Cr-Commit-Position: refs/heads/master@{#435063}
-
erikchen authored
NSWindow resizing is slow, so try to guess the right size when first creating the window. Furthermore, resizing the window will create implicit animations for the Window's views and layers. Disable those implicit animations. BUG=667511 Review-Url: https://codereview.chromium.org/2539863002 Cr-Commit-Position: refs/heads/master@{#435062}
-
rogerm authored
The translate ranker enforcement flag was redundantly enforced within the ranker itself, thwarting the TranslateManagers attempts to log the ranker result and enforc (or not) the result. The check in the TranslateRanker should have been removed in the last refactor. BUG=669528 Review-Url: https://codereview.chromium.org/2533953003 Cr-Commit-Position: refs/heads/master@{#435061}
-
martijn authored
Adding EmbeddedTestServer handlers after the server has started isn't thread safe. BUG=546060 Review-Url: https://codereview.chromium.org/2518403005 Cr-Commit-Position: refs/heads/master@{#435060}
-
iclelland authored
The test has been failing intermittently on ChromeOS. BUG=668335 TBR=kcarattini Review-Url: https://codereview.chromium.org/2540793002 Cr-Commit-Position: refs/heads/master@{#435059}
-
pdfium-deps-roller authored
https://pdfium.googlesource.com/pdfium.git/+log/05e016984447..708ef623c2e9 $ git log 05e016984..708ef623c --date=short --no-merges --format='%ad %ae %s' 2016-11-29 npm Do not clone in CPDF_ImageCacheEntry::GetCachedBitmap Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, see: http://www.chromium.org/developers/tree-sheriffs/sheriff-details-chromium#TOC-Failures-due-to-DEPS-rolls TBR=dsinclair@chromium.org Review-Url: https://codereview.chromium.org/2538813002 Cr-Commit-Position: refs/heads/master@{#435058}
-
fdoray authored
This CL replaces base::WorkerPool::PostTask() with base::PostTaskWithTraits(). The following traits are used: Priority: BACKGROUND User won't notice if this task takes an arbitrarily long time to complete. Shutdown behavior: CONTINUE_ON_SHUTDOWN Tasks posted with this mode which have not started executing before shutdown is initiated will never run. Tasks with this mode running at shutdown will be ignored (the worker will not be joined). No File IO (default): The task does not perform synchronous IO operations. No Wait (default): The task does not wait on things other than synchronous file IO operations (e.g. WaitableEvent, ConditionVariable, join a thread, join a process, blocking system call that doesn't involve interactions with the file system). BUG=659191 Review-Url: https://codereview.chromium.org/2534513002 Cr-Commit-Position: refs/heads/master@{#435057}
-
moshayedi authored
This can be useful for serializing/deserializing ui::CompositionText, etc. BUG=NONE Review-Url: https://codereview.chromium.org/2531323002 Cr-Commit-Position: refs/heads/master@{#435056}
-
gab authored
Mostly a matter of tweaking destruction order in test and adding an additional flush instead of depending on ~MediaStreamManager() implicitly flushing MediaStreamManager::video_capture_thread_(). This is a prereq to https://codereview.chromium.org/2464233002 which will from now on reset BrowserThread globals associated with destroyed BrowserThreadImpls and thus makes DCHECK_CURRENTLY_ON fail after that fact. BUG=653916 Review-Url: https://codereview.chromium.org/2535043003 Cr-Commit-Position: refs/heads/master@{#435055}
-
fdoray authored
WithWait() tasks are allowed to wait on other things than file I/O. In particular, they may wait on a WaitableEvent or a ConditionVariable, join a thread or a process, or make a blocking system call that doesn't involve interactions with the file system. In upcoming CLs, this trait will be used in scheduling decisions (more details on the bug). BUG=669247 Review-Url: https://codereview.chromium.org/2531663003 Cr-Commit-Position: refs/heads/master@{#435054}
-
jbriance authored
Remove useless class and struct forward declarations, and add missing ones in net header files. BUG=662195 Review-Url: https://codereview.chromium.org/2531373002 Cr-Commit-Position: refs/heads/master@{#435053}
-
weiliangc authored
Increase the max ranger to 100M. BUG= R=ericrk CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_trusty_blink_rel Review-Url: https://codereview.chromium.org/2498703002 Cr-Commit-Position: refs/heads/master@{#435052}
-
asimjour authored
Now we can click while scrolling. The scrolling stops and Tap is sent. BUG=668518 Review-Url: https://codereview.chromium.org/2533493002 Cr-Commit-Position: refs/heads/master@{#435051}
-
erikchen authored
The IOSurface wasn't being released when the Canvas2DLayerBridge was destroyed before the texture was returned. BUG=662696 Review-Url: https://codereview.chromium.org/2537003002 Cr-Commit-Position: refs/heads/master@{#435050}
-
apacible authored
BUG=669597 TBR=dbeam@chromium.org NOTRY=true Review-Url: https://codereview.chromium.org/2535293002 Cr-Commit-Position: refs/heads/master@{#435049}
-
dmazzoni authored
This was causing the braille captions to not show up since change r431444. BUG=669255 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:closure_compilation Review-Url: https://codereview.chromium.org/2532003004 Cr-Commit-Position: refs/heads/master@{#435048}
-
robertogden authored
Includes a working test case and basic functionality. Much more to come. BUG= Review-Url: https://codereview.chromium.org/2528483004 Cr-Commit-Position: refs/heads/master@{#435047}
-
skia-deps-roller authored
https://skia.googlesource.com/skia.git/+log/e18c97b73a03..56b50792531c $ git log e18c97b73..56b507925 --date=short --no-merges --format='%ad %ae %s' 2016-11-29 mtklein Make gather() look and work more like load(). 2016-11-28 mtklein Use /MD for Windows builds. 2016-11-29 mtklein document x_tail encoding 2016-11-29 bsalomon Reland image storage with fixes. Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, see: http://www.chromium.org/developers/tree-sheriffs/sheriff-details-chromium#TOC-Failures-due-to-DEPS-rolls CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_trusty_blink_rel TBR=brianosman@google.com Review-Url: https://codereview.chromium.org/2536193003 Cr-Commit-Position: refs/heads/master@{#435046}
-
mmenke authored
The code was allowing CRs or LFs in remote paths, but DCHECKing that commands including paths don't contain them. This CL makes the request fail if a remote path contains either character. BUG=669407 Review-Url: https://codereview.chromium.org/2538773002 Cr-Commit-Position: refs/heads/master@{#435045}
-
rkjnsn authored
Adds a wrapper to launch me2me script in a proper PAM session. BUG=616962 Review-Url: https://codereview.chromium.org/2323153002 Cr-Commit-Position: refs/heads/master@{#435044}
-
dgozman authored
Migrated navigator tests and compiler-script-mapping away from mock workspace. BUG=none Review-Url: https://codereview.chromium.org/2536733004 Cr-Commit-Position: refs/heads/master@{#435043}
-
apacible authored
BUG=668360 TBR=palmer@chromium.org NOTRY=true Review-Url: https://codereview.chromium.org/2537193002 Cr-Commit-Position: refs/heads/master@{#435042}
-
hzl authored
In this cl, we are trying to add the logcat of each instrumentation test into the corresponding test result object, so that when we are checking the result of each test case, we would be able to see the corresponding logcat for that test case at the same time. BUG=631213 Review-Url: https://codereview.chromium.org/2451523002 Cr-Commit-Position: refs/heads/master@{#435041}
-
twellington authored
Attempt to fix ContextualSearchManagerTest#testImageControl() by running calls to the ContextualSearchImageControl on the UI thread. Also add @RetryOnFailure to #testTapOnRoleIgnored(). BUG=669405,669565 Review-Url: https://codereview.chromium.org/2534193002 Cr-Commit-Position: refs/heads/master@{#435040}
-
bsheedy authored
Adds the chrome_public_test_apk instrumentation tests to the Android VR FYI builder and limits it to VR-related tests using the functionality added in https://bugs.chromium.org/p/chromium/issues/detail?id=658342 BUG= Review-Url: https://codereview.chromium.org/2537633002 Cr-Commit-Position: refs/heads/master@{#435039}
-
bsheedy authored
Adds basic image diffing capabilities to the VR Shell instrumentation tests and adds image diffing versions of the enter/exit VR mode tests. Will require adding new reference images as more devices with different resolutions are tested (currently only has 2560 x 1440). BUG= Review-Url: https://codereview.chromium.org/2455683002 Cr-Commit-Position: refs/heads/master@{#435038}
-
kylechar authored
On daisy devices the physical_size for display is being reported incorrectly as (0, 0). Return a standard DPI in this case. I've filled crbug.com/669554 for the bad physical_size value. BUG=669554 Review-Url: https://codereview.chromium.org/2539843002 Cr-Commit-Position: refs/heads/master@{#435037}
-
liyuqian authored
We no longer use SK_ANALYTIC_AA flag it's now set as default in Chromium. However, we need some flag to guard some bug fixes in Skia wihtout breaking the Chromium layout tests. BUG= Review-Url: https://codereview.chromium.org/2536643004 Cr-Commit-Position: refs/heads/master@{#435036}
-
binji authored
They are no longer working on the project. Review-Url: https://codereview.chromium.org/2539883002 Cr-Commit-Position: refs/heads/master@{#435035}
-
tbarzic authored
Introduce API feature properties to specify an API source and alias. |source| is set on API alias, and is used during API registration - if an API feature has source set, the bindings installed under API name will be the bindings of |source| API. |alias| is used on source API, and is used when checking API availability - when checking availability of an API that has alias set, the API will be deemed available if either one of the API and the API alias are available in the context. Note that this logic should not be used when determining API availability for binding registration - in this case alias availability should be ignored in order to avoid registering source API bindings when only alias bindings are needed. BUG=647415 Review-Url: https://codereview.chromium.org/2494653005 Cr-Commit-Position: refs/heads/master@{#435034}
-
Krishna Govind authored
Cr-Commit-Position: refs/heads/master@{#435033} -
apacible authored
BUG=669572 TBR=davidben@chromium.org NOTRY=true Review-Url: https://codereview.chromium.org/2532253003 Cr-Commit-Position: refs/heads/master@{#435032}
-
alexclarke authored
More than one system wants to be able to enable and disable task queues. The TaskQueue::QueueEnabledVoter lets them safely vote on which queues are enabled and disabled. BUG= Review-Url: https://codereview.chromium.org/2540663002 Cr-Commit-Position: refs/heads/master@{#435031}
-
khmel authored
This fixes the regression caused by refactoring. TEST=Manually BUG=32545771 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:closure_compilation Review-Url: https://codereview.chromium.org/2541553002 Cr-Commit-Position: refs/heads/master@{#435030}
-
catapult-deps-roller authored
https://chromium.googlesource.com/external/github.com/catapult-project/catapult.git/+log/3950931a913d..c82129405204 $ git log 3950931a9..c82129405 --date=short --no-merges --format='%ad %ae %s' 2016-11-29 nednguyen [Telemetry] Add AddTimelineBasedMetric API for TBM option BUG=669526 Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, see: http://www.chromium.org/developers/tree-sheriffs/sheriff-details-chromium#TOC-Failures-due-to-DEPS-rolls CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.android:android_optional_gpu_tests_rel TBR=catapult-sheriff@chromium.org Review-Url: https://codereview.chromium.org/2535263002 Cr-Commit-Position: refs/heads/master@{#435029}
-
yusufo authored
In tab reparenting, we never close but only remove the tab from the model. During this process, both tab observer and also the metrics observer was still kept, which leaked over some custom tab features into the tab even after it was reparented. This removes the observers and fixes the related issues. TEST=CustomTabActivityTest#testTabReparentingBasic BUG=669169 Review-Url: https://codereview.chromium.org/2539643002 Cr-Commit-Position: refs/heads/master@{#435028}
-
slan authored
arm_neon.h throws an error when included in a non-neon build. Only include neon-related sources when use_arm_neon is true. BUG=657874 Review-Url: https://codereview.chromium.org/2427333004 Cr-Commit-Position: refs/heads/master@{#435027}
-
sky authored
This also adds PropertyConverter::GetPropertyValueFromTransformValue() which I need in ash for values used in creation of the window but don't make their way into real properties. BUG=664625 TEST=none R=msw@chromium.org Review-Url: https://codereview.chromium.org/2538633002 Cr-Commit-Position: refs/heads/master@{#435026}
-
timav authored
In android webview the selection handles are implemented in PopupTouchHandleDrawable.java In this CL we make this class an observer that listens to display changes and keep the current dip scale as a member instead of retrieving it from ContentViewCore. We cannot update the bitmaps by the DisplayAndroid signal (i.e. in onDIPScaleChanged()) because the resources are not yet updated at the moment. Instead, we update the bitmap in the subsequent onConfigurationChanged() that should follow the display change. To make sure that the configuration corresponds to the display change we check that the display density in resources is equal to the expected value. BUG=620929 Review-Url: https://codereview.chromium.org/2515343004 Cr-Commit-Position: refs/heads/master@{#435025}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/d656dfb5..f796cb3f 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_trusty_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/2540553004 Cr-Commit-Position: refs/heads/master@{#435024}
-