- 14 Sep, 2016 40 commits
-
-
aberent authored
Revert of ImageCapture: Connect takePhoto() VideoCaptureDeviceTest (patchset #1 id:1 of https://codereview.chromium.org/2340573002/ ) Reason for revert: Fails on Android L. BUG=646840 Original issue's description: > ImageCapture: Connect takePhoto() VideoCaptureDeviceTest > > This CL enables VideoCaptureDeviceTest.TakePhoto for > Android. (Note that, due to other circumstances, it'll > only be enabled for devices implementing the Camera2 > API in non-legacy mode). > > The only modification is that Android creates JPEGs > with APP1 JFIF header, because it includes EXIF information. > > BUG=518807, 626857 > > Committed: https://crrev.com/a8ae6bfb0e432ee220b641b0e8bb3f4800a7448a > Cr-Commit-Position: refs/heads/master@{#418423} TBR=emircan@chromium.org,chfremer@chromium.org,mcasas@chromium.org # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=518807, 626857 Review-Url: https://codereview.chromium.org/2344503003 Cr-Commit-Position: refs/heads/master@{#418580}
-
skia-deps-roller authored
https://chromium.googlesource.com/skia.git/+log/6ef6999017fe..eed356d281ad $ git log 6ef699901..eed356d28 --date=short --no-merges --format='%ad %ae %s' 2016-09-14 caryclark Rewriting path writer 2016-09-14 msarett Reduce overhead for linear color xforms 2016-09-14 jvanverth Switch default for SkGaussianBlurShader radius size. BUG=5188 CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel TBR=djsollen@google.com Review-Url: https://codereview.chromium.org/2331223006 Cr-Commit-Position: refs/heads/master@{#418579}
-
joenotcharles authored
BUG=631480 Review-Url: https://codereview.chromium.org/2226133005 Cr-Commit-Position: refs/heads/master@{#418578}
-
dewittj authored
This is part of a cleanup before switching to a query interface. BUG=622763 Review-Url: https://codereview.chromium.org/2336973005 Cr-Commit-Position: refs/heads/master@{#418577}
-
svillar authored
The purpose of the class is to mark a subtree as needing layout mainly for multipass layout. We should just use LayoutObject->setNeedsLayout() Review-Url: https://codereview.chromium.org/2341433003 Cr-Commit-Position: refs/heads/master@{#418576}
-
kylechar authored
This CL adds GLX support to the Ozone X11 platform. Ozone X11 will attempt to use GLX by default. It reuses the existing GLX GLSurface and GLContext. Changes to NativeViewSurfaceGLX are necessary as it handles Expose events from the PlatformEventSource. The class is split into an abstract base class with two small event handling implementations for USE_X11 and USE_OZONE. BUG=361137,640613 Review-Url: https://codereview.chromium.org/1723303002 Cr-Commit-Position: refs/heads/master@{#418575}
-
ymalik authored
Note that this bug was found while working on crbug.com/597479. fast/dom/vertical-scrollbar-in-rtl.html was failing a DCHECK because we would try to adjust when there was no animation. This CL also exposes RunState via runStateForTesting. BUG=597479 Review-Url: https://codereview.chromium.org/2336823003 Cr-Commit-Position: refs/heads/master@{#418574}
-
bungeman authored
-4d3f7ca8cedbddad40b9e93a82926618e3fb4265 +c38be52bf8de3b1699d74932b849bf150265819e BUG=chromium:646635 Review-Url: https://codereview.chromium.org/2340713003 Cr-Commit-Position: refs/heads/master@{#418573}
-
rdevlin.cronin authored
The Cloud Datastore API is being updated. Update server2 to match. Release notes for the API: https://cloud.google.com/datastore/release-notes BUG=646877 Review-Url: https://codereview.chromium.org/2337753002 Cr-Commit-Position: refs/heads/master@{#418572}
-
nhiroki authored
Before this CL, WorkerThread checks whether forcible termination happened by WorkerOrWorkletScriptController::isExecutionTerminating(). After this CL, WorkerThread checks it by WorkerThread::isForciblyTerminated() instead. This should be clearer than the previous way and enables to remove an access to WorkerThread::m_globalScope from the main thread. BUG=638877 Review-Url: https://codereview.chromium.org/2324693003 Cr-Commit-Position: refs/heads/master@{#418571}
-
pdfium-deps-roller authored
https://pdfium.googlesource.com/pdfium.git/+log/89f8fa8694bb..79db609948b0 $ git log 89f8fa869..79db60994 --date=short --no-merges --format='%ad %ae %s' 2016-09-14 dsinclair Rename CPDFDoc_Environment to CPDFSDK_Environment 2016-09-14 dsinclair Split CPDFXFA_Document apart 2016-09-14 dsinclair Cleanup CPDFXFA_Document. TBR=dsinclair@chromium.org Review-Url: https://codereview.chromium.org/2338273003 Cr-Commit-Position: refs/heads/master@{#418570}
-
jamescook authored
This is needed for other //chromeos/dbus refactoring for mus+ash. * Rename stub to fake in DBusThreadManager and DBusClientBundle for consistency with the Fake*Client implementations * Extract DBusClientType into its own file * Move --dbus-unstub-clients parsing into the same file so that the client name strings are near the enum * Add some simple unit tests for DBusThreadManager initialization No functional changes. BUG=644414 TEST=chromeos_unittests TBR=peter@chromium.org Review-Url: https://codereview.chromium.org/2338063002 Cr-Commit-Position: refs/heads/master@{#418569}
-
dcheng authored
BUG=581865 Review-Url: https://codereview.chromium.org/2323993004 Cr-Commit-Position: refs/heads/master@{#418568}
-
xunjieli authored
This CL implements QuicHttpStream::GetLoadTimingInfo. |dns_start| and |dns_end| are obtained in QuicStreamFactory::Job::DoResolveHost and DoResolveHostComplete. These two values are passed to QuicChromiumClientSession's constructor. |connect_start| and |connect_end| are obtained in QuicChromiumClientSession::CrytoConnect() and when handshake is confirmed. |ssl_start| and |ssl_end| are the same as |connect_start| and |connect_end| because QUIC always does encryption. If a session is reused, the connect_timing fields should all be null. This CL also sets |socket_reused| field of LoadTimingInfo accordingly. BUG=637051 Committed: https://crrev.com/5608fc1bd4f0a80b6d1996f3f4059f2efa0a0777 Review-Url: https://codereview.chromium.org/2324183002 Cr-Original-Commit-Position: refs/heads/master@{#417969} Cr-Commit-Position: refs/heads/master@{#418567}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/567592da..c37ceeb3 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/2339163002 Cr-Commit-Position: refs/heads/master@{#418566}
-
schenney authored
The test was considered flakey, but now it's always failing. Get some new baselines to figure out if it's actually flakey. TBR=senorblanco@chromium.org BUG=627782 Review-Url: https://codereview.chromium.org/2332933002 Cr-Commit-Position: refs/heads/master@{#418565}
-
mmoroz authored
libFuzzer doesn't accept "\t", use "\x09" instead. BUG= TBR=ricea@chromium.org,eroman@chromium.org Review-Url: https://codereview.chromium.org/2339913002 Cr-Commit-Position: refs/heads/master@{#418564}
-
junov authored
This CL add null ptr checks in a few places that need them. BUG=644644 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.win:win_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel Review-Url: https://codereview.chromium.org/2335263002 Cr-Commit-Position: refs/heads/master@{#418563}
-
skia-deps-roller authored
https://chromium.googlesource.com/skia.git/+log/53c02e015664..6ef6999017fe $ git log 53c02e015..6ef699901 --date=short --no-merges --format='%ad %ae %s' 2016-09-14 mtklein GN: Android Vulkan support 2016-09-14 mtklein update derive_compile_bot_name() for GN_Android_Vulkan CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel TBR=djsollen@google.com Review-Url: https://codereview.chromium.org/2339183002 Cr-Commit-Position: refs/heads/master@{#418562}
-
jbroman authored
It has continued to fail: https://build.chromium.org/p/chromium.webkit/builders/WebKit%20Mac10.10/builds/23657 http://test-results.appspot.com/dashboards/flakiness_dashboard.html#tests=paint/invalidation/fixed-and-absolute-position-scrolled.html BUG=636222 TBR=wangxianzhu@chromium.org NOTRY=true Review-Url: https://codereview.chromium.org/2341763002 Cr-Commit-Position: refs/heads/master@{#418561}
-
fdoray authored
SequencedWorkerPool is being migrated to base/task_scheduler and there is no equivalent to IsRunningSequenceOnCurrentThread() in base/task_scheduler. Developers should use SequenceChecker to verify that tasks run sequentially. Unlike SequencedWorkerPool::IsRunningSequenceOnCurrentThread(), SequenceChecker works everywhere in Chrome (MessageLoop, SequencedWorkerPool, base/task_scheduler...). BUG=622400 Review-Url: https://codereview.chromium.org/2315303002 Cr-Commit-Position: refs/heads/master@{#418560}
-
pdfium-deps-roller authored
https://pdfium.googlesource.com/pdfium.git/+log/2ca2da505ba7..89f8fa8694bb $ git log 2ca2da505..89f8fa869 --date=short --no-merges --format='%ad %ae %s' 2016-09-14 dsinclair Remove unused code in CPDFXFA_Document TBR=dsinclair@chromium.org Review-Url: https://codereview.chromium.org/2338243002 Cr-Commit-Position: refs/heads/master@{#418559}
-
eyaich authored
BUG=chromium:633253 Review-Url: https://codereview.chromium.org/2333123003 Cr-Commit-Position: refs/heads/master@{#418558}
-
joone.hur authored
When a text is wrapped during layout, the leading space of the text can be collapsed and a line break is inserted instead of the space. In this case, we need to restore the collapsed space when we copy the text. This CL handles the case that the below CL didn't cover: https://codereview.chromium.org/2320533002/ In addition, while iterating through the DOM range, the below case with the TextIteratorBehavior flag don't need to restore the leading space. * Running DumpRenderTree : TextIteratorForInnerText * Searching text : TextIteratorDoesNotBreakAtReplacedElement * Getting a plain text for copy & paste: TextIteratorEmitsImageAltText BUG=318925 TEST=editing/pasteboard/restore-collapsed-space-for-copy.html Review-Url: https://codereview.chromium.org/2325553002 Cr-Commit-Position: refs/heads/master@{#418557}
-
alexclarke authored
To achieve this we make a few changes: 1. We only register the next wakeup with the TimeDomain, rather than all of them. 2. MoveReadyDelayedTasksToDelayedWorkQueue now registers the next wakeup (if any). Since it removes all canceled delayed tasks from the front of the priority queue this has the effect of not scheduling wakeups for cancelled tasks. 3. Tweaking the TaskQueueManager level delayed DoWork de-duplication logic to only post a delayed DoWork if the task is meant to run before any previously registered delayed DoWorks. BUG=638542, 605718 Review-Url: https://codereview.chromium.org/2320403003 Cr-Commit-Position: refs/heads/master@{#418556}
-
fdoray authored
Before this CL, setup.exe did not always persist histograms (e.g. when launched with --rename-chrome-exe, when SetupSingleton acquisition failed during an install or update). With this CL, RAII is used to ensure that a setup.exe process always persists histograms (except when the histogram storage directory does not exist). BUG=451546 Review-Url: https://codereview.chromium.org/2335313002 Cr-Commit-Position: refs/heads/master@{#418555}
-
fdoray authored
SequencedWorkerPool is being migrated to base/task_scheduler and there is no equivalent to IsRunningSequenceOnCurrentThread() in base/task_scheduler. Developers should use SequenceChecker to verify that tasks run sequentially. Note: SequenceChecker::CalledOnValidSequence is a no-op in non-DCHECK builds. BUG=622400 Review-Url: https://codereview.chromium.org/2317253007 Cr-Commit-Position: refs/heads/master@{#418554}
-
csharrison authored
Review-Url: https://codereview.chromium.org/2339073002 Cr-Commit-Position: refs/heads/master@{#418553}
-
jinho.bang authored
Add DOMMatrixInit[1] and fromMatrix()[2]. This CL makes multiply methods take DOMMatrixInit instead of DOMMatrix(ReadOnly) but it doesn't change the existing behavior. [1] https://drafts.fxtf.org/geometry/#dictdef-dommatrixinit [2] https://drafts.fxtf.org/geometry/#dom-dommatrixreadonly-frommatrix BUG=388780 Review-Url: https://codereview.chromium.org/2283363003 Cr-Commit-Position: refs/heads/master@{#418552}
-
mcasas authored
No bug, just a naming cleanup: since the Unit test is called WebRtcMediaRecorderTest, it's completely redundant to prefix the individual tests MediaRecorderFoo, so this CL removed the "MediaRecorder" test case prefix. Review-Url: https://codereview.chromium.org/2332213005 Cr-Commit-Position: refs/heads/master@{#418551}
-
sunyunjia authored
This patch injects automated script as input to the manual test. A following patch will import the manual test from w3c. Review-Url: https://codereview.chromium.org/2332843002 Cr-Commit-Position: refs/heads/master@{#418550}
-
grt authored
BUG=646836 TBR=alexmos@chromium.org CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_site_isolation Review-Url: https://codereview.chromium.org/2338963003 Cr-Commit-Position: refs/heads/master@{#418549}
-
skia-deps-roller authored
https://chromium.googlesource.com/skia.git/+log/7e3ba9f88d64..53c02e015664 $ git log 7e3ba9f88..53c02e015 --date=short --no-merges --format='%ad %ae %s' 2016-09-14 mtklein Android GN scripts: distingush directories for data and binaries. CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel TBR=djsollen@google.com Review-Url: https://codereview.chromium.org/2331343006 Cr-Commit-Position: refs/heads/master@{#418548}
-
sebsg authored
BUG=646576 TBR=vabr@chromium.org Review-Url: https://codereview.chromium.org/2343643002 Cr-Commit-Position: refs/heads/master@{#418547}
-
ehmaldonado authored
BUG=497757 Review-Url: https://codereview.chromium.org/2339153002 Cr-Commit-Position: refs/heads/master@{#418546}
-
tomhudson authored
These unittests have been disabled for years, limiting our coverage; by implementing a Cairo version of DrawNativeRect() we can turn on at least a few of them. R=fmalita@chromium.org BUG=154358 Review-Url: https://codereview.chromium.org/2332293003 Cr-Commit-Position: refs/heads/master@{#418545}
-
fmalita authored
Currently, we refresh image animations from their draw() impl. But the rounded-rect fast path introduced in http://crrev.com/1949253004 draws images via shaders, so it may never call Image::draw() to advance animations. Update applyShader() to refresh the animations explicitly, similar to the draw() case. BUG=644112 Review-Url: https://codereview.chromium.org/2340683002 Cr-Commit-Position: refs/heads/master@{#418544}
-
sebsg authored
BUG=646576 Review-Url: https://codereview.chromium.org/2330293003 Cr-Commit-Position: refs/heads/master@{#418543}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/4d0ad1c2..567592da 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/2335343003 Cr-Commit-Position: refs/heads/master@{#418542}
-
aberent authored
Revert of Add fuzzer for AXTree and fix a couple of bugs it found. (patchset #3 id:40001 of https://codereview.chromium.org/2323103002/ ) Reason for revert: Caused Address Sanitizer problem with BrowserAccessibilityManagerTest.TestFatalError BUG=646777 Original issue's description: > Add fuzzer for AXTree and fix a couple of bugs it found. > > BUG=none > > Committed: https://crrev.com/cd760f121c0701c0f7609a3437735751cf4ac416 > Cr-Commit-Position: refs/heads/master@{#418308} TBR=aarya@google.com,aboxhall@chromium.org,mmoroz@chromium.org,ochang@chromium.org,dmazzoni@chromium.org # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=none Review-Url: https://codereview.chromium.org/2346473002 Cr-Commit-Position: refs/heads/master@{#418541}
-