- 15 Sep, 2016 40 commits
-
-
skia-deps-roller authored
https://chromium.googlesource.com/skia.git/+log/14e7a602d0ca..09b352f75f95 $ git log 14e7a602d..09b352f75 --date=short --no-merges --format='%ad %ae %s' 2016-09-15 mtklein Tidy up DM blacklists. 2016-09-15 rmistry Roll recipe DEPS 2016-09-15 mtklein Clean up unused SkPictureRecorder::optimizeFor() CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel TBR=djsollen@google.com Review-Url: https://codereview.chromium.org/2341843003 Cr-Commit-Position: refs/heads/master@{#418869}
-
bokan authored
It contains a number of methods that don't conceptually belong on RootScrollerController. This is also a natural step towards making this feature work with out of process iframes. The main changes in this CL are: -TopDocumentRootScrollerController is no longer a subclass of RootScrollerController -TopDocumentRootScrollerController is now owned by FrameHost -All the methods on RootScrollerController that really only belonged on the Page level object have been removed. The class will be renamed in a followup CL to be more representative of these changes. BUG=505516 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2 Review-Url: https://codereview.chromium.org/2285253003 Cr-Commit-Position: refs/heads/master@{#418868}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/3fc897f5..6f1ef12e 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/2338423003 Cr-Commit-Position: refs/heads/master@{#418867}
-
robliao authored
This paves the way to allow Variations initialization to occur without MetricsService initialization. Deferring MetricsService inititalization is needed for the Browser Task Scheduler work as the underlying metrics providers will post asynchronous tasks. BUG=636518 Review-Url: https://codereview.chromium.org/2333283005 Cr-Commit-Position: refs/heads/master@{#418866}
-
jbroman authored
Make virtual/rootlayerscrolls/scrollbars/custom-scrollbar-reconstruction-on-inserting-style-sheet.html expectation apply to all platforms. It was failing on the Win 10 bot: https://build.chromium.org/p/chromium.webkit/builders/WebKit%20Win10/builds/14833 BUG=492785 TBR=sataya.m@samsung.com,skobes@chromium.org NOTRY=true Review-Url: https://codereview.chromium.org/2347623002 Cr-Commit-Position: refs/heads/master@{#418865}
-
derat authored
ObjectProxy's real method calls Bus::AssertOnOriginThread() and causes in some log spam (but surprisingly doesn't crash). Override the method in MockObjectProxy to prevent this. Also update chromeos::PowerManagerClientTest to expect this call. BUG=646912 Review-Url: https://codereview.chromium.org/2340683003 Cr-Commit-Position: refs/heads/master@{#418864}
-
manzagop authored
Enables writing a minimal minidump for wrapping a StabilityReport protocol buffer. The minidump is meant to be valid for registration with the Crashpad reporter (includes the Crashpad info stream). BUG=620813 Review-Url: https://codereview.chromium.org/2327043002 Cr-Commit-Position: refs/heads/master@{#418863}
-
schenney authored
The moved tests are always expected to fail due to stack-space issues or incompatible test flags. Also update the comment as to what belongs in NeverFixTests. Two tests that were in NeverFixTests are just Slow now, so re-enable them. R=dpranke@chromium.org BUG=381840,601669,646528 Review-Url: https://codereview.chromium.org/2334893002 Cr-Commit-Position: refs/heads/master@{#418862}
-
fdoray authored
This CL (hopefully) removes all calls to these methods in net: - MessageLoop::PostTask - MessageLoop::PostDelayedTask - MessageLoop::DeleteSoon - MessageLoop::ReleaseSoon - MessageLoop::Run - MessageLoop::RunUntilIdle BUG=616447 R=agl@chromium.org Review-Url: https://codereview.chromium.org/2315873002 Cr-Commit-Position: refs/heads/master@{#418861}
-
felt authored
This extends the #mark-non-secure-as flag to use for the HTTP-bad phase 1 (passwords and CC form detection) work. It currently behaves exactly like the existing kMarkNonSecureAsNeutral switch, although presumably that will change as we make progress. BUG=646221 Review-Url: https://codereview.chromium.org/2337103002 Cr-Commit-Position: refs/heads/master@{#418860}
-
sdefresne authored
Reverted by: https://codereview.chromium.org/2338213002/ Reason for reland: Now gn gens for enable_resource_whitelist_generation = true Main motivation for this is to more easily add per-target repack_whitelist. TBR=michaelbai@chromium.org,thakis@chromium.org,agrieve@chromium.org,estevenson@chromium.org,rsesek@chromium.org,brettw@chromium.org BUG=645716 Review-Url: https://codereview.chromium.org/2339213003 Cr-Commit-Position: refs/heads/master@{#418859}
-
yukishiino authored
http://heycam.github.io/webidl/#es-iterator If an interface has indexed property getter and length attribute, then @@iterator must be %ArrayProto_values%. Plus, @@iterator must be {writable: true, enumerable: false, configurable: true}. BUG=632935 Review-Url: https://codereview.chromium.org/2341643003 Cr-Commit-Position: refs/heads/master@{#418858}
-
kylechar authored
Add GLOzoneEGLGbm and remove old API calls. BUG=643368 Review-Url: https://codereview.chromium.org/2327813002 Cr-Commit-Position: refs/heads/master@{#418857}
-
sunyunjia authored
LayoutBox::scrollRectToVisible will return if the new rect to be scrolled is empty after clipped by layerBounds. However, the rect to be scrolled might be an empty rect originally. A common case is empty <a> elements used as named anchors for navigation. This patch sets the size of the empty rect to 1 so that it can still be scrolled. BUG=646738 Review-Url: https://codereview.chromium.org/2339653003 Cr-Commit-Position: refs/heads/master@{#418856}
-
gab authored
Also while here: - const scoped_refptr<>& => scoped_refptr<> + std::move (helps avoiding unnecessary refcount bumps: https://groups.google.com/a/chromium.org/d/topic/chromium-dev/TlL1D-Djta0/discussion) BUG=646443 Review-Url: https://codereview.chromium.org/2338363002 Cr-Commit-Position: refs/heads/master@{#418855}
-
gab authored
BUG=646443 Review-Url: https://codereview.chromium.org/2344593003 Cr-Commit-Position: refs/heads/master@{#418854}
-
fdoray authored
This API can be used from any task from which SequencedTaskRunnerHandle::Get() returns a SequencedTaskRunner (i.e. in particular, it can be used from SINGLE_THREADED and SEQUENCED tasks running in base/task_scheduler). As opposed to the existing API which is only available from single-threaded tasks running in a MessageLoopForIO. Threads that want to support this API must instantiate a FileDescriptorWatcher. The constructor of FileDescriptorWatcher takes as argument a MessageLoopForIO to use to watch file descriptors for which callbacks are registered on the thread on which it is invoked. The MessageLoopForIO does *not* have to run on that thread. When the MessageLoopForIO detects that watched file descriptors are readable and/or writable without blocking, it posts a task to run the callback on the sequence on which it was registered. Design doc: https://docs.google.com/document/d/1F5CjON2JNtCtdEug3LOL8-avj188k_xOgqzdv288Q_s/edit?usp=sharing Discussion on chromium-dev: https://groups.google.com/a/chromium.org/d/msg/chromium-dev/voOAab4mV9A/S9xXdpPkBgAJ BUG=645114 Review-Url: https://codereview.chromium.org/2332923004 Cr-Commit-Position: refs/heads/master@{#418853}
-
maksim.sisov authored
This cl splits the big CL with changes to net/ folder and has changes only to net/cert_net according to the changes to URLRequest API. What the big cl does: It modifies net/ clients that use URLRequest API as long as URLRequest::Read returns int net errors and URLRequest::Delegate and NetworkDelegate methods (for example, OnResponseStarted or OnCompleted) have int net_error in the arguments now. The reason behind splitting the CL into small one is that an android bot started to be unstable and unittests became flaky. It was not possible to locate the problem and the decision was to split the CL and upload small parts with a 6+ hours interval in order to make it possible to locate the problematic code. The big CL is located here - https://codereview.chromium.org/2265873002/ BUG=423484 Committed: https://crrev.com/a74d3cbc572fa1c85cc2c0434a9f8e2f9cba0cd9 Review-Url: https://codereview.chromium.org/2330873002 Cr-Original-Commit-Position: refs/heads/master@{#418014} Cr-Commit-Position: refs/heads/master@{#418852}
-
mmoroz authored
R=mbarbella@chromium.org, ochang@chromium.org BUG=643275 Review-Url: https://codereview.chromium.org/2340813002 Cr-Commit-Position: refs/heads/master@{#418851}
-
fdoray authored
The RunsTasksOnCurrentThread() method of a SequencedTaskRunner returned by a SequencedWorkerPool returns true iff the current task is part of the sequence associated with the SequencedTaskRunner. This CL changes SchedulerSequencedTaskRunner to match the behavior of SequencedWorkerPool. BUG=553459,646905 Review-Url: https://codereview.chromium.org/2340793002 Cr-Commit-Position: refs/heads/master@{#418850}
-
lpromero authored
BUG=none R=noyau@google.com Review-Url: https://codereview.chromium.org/2342833002 Cr-Commit-Position: refs/heads/master@{#418849}
-
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=gab@chromium.org, mattm@chromium.org, haven@chromium.org, phajdan.jr@chromium.org, gene@chromium.org, reillyg@chromium.org Review-Url: https://codereview.chromium.org/2321573002 Cr-Commit-Position: refs/heads/master@{#418848}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/06fda3c9..3fc897f5 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/2339333002 Cr-Commit-Position: refs/heads/master@{#418847}
-
cbiesinger authored
BUG=646288 Review-Url: https://codereview.chromium.org/2342663002 Cr-Commit-Position: refs/heads/master@{#418846}
-
hbos authored
Currently there are const char* and std::string varieties of strings in RTCStatsMember objects ("StaticString" and "String"). The const char* version is going away so that we don't have two string types. This CL removes references to the "StaticString" types so that a WebRTC CL can remove it without breaking Chromium. Only rtc_stats.cc have to be updated, not affecting any code because rtc_stats is not used yet (a CL is in the works that will use it and add unittests for it that is blocked on a WebRTC CL that is under review). BUG=chromium:627816 Review-Url: https://codereview.chromium.org/2340603004 Cr-Commit-Position: refs/heads/master@{#418845}
-
nednguyen authored
Revert of Disabled the v8.todomvc reference build due to missing clock sync markers (patchset #2 id:20001 of https://codereview.chromium.org/2340033002/ ) Reason for revert: Root issue should be fixed. Original issue's description: > Disabled the v8.todomvc reference build due to missing clock sync markers > > TBR=nednguyen@chromium.org > BUG=646925 > > Committed: https://crrev.com/2c1a2b054e002dd463cdf88df02b3e20d550d0dd > Cr-Commit-Position: refs/heads/master@{#418632} TBR=nednguyen@chromium.org,oysteine@chromium.org # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=646925 Review-Url: https://codereview.chromium.org/2347493004 Cr-Commit-Position: refs/heads/master@{#418844}
-
vabr authored
path() is being deprecated, GetPath() has better checking against wrong use. For more context, see https://codereview.chromium.org/2275553005/. BUG=640599 Review-Url: https://codereview.chromium.org/2321453002 Cr-Commit-Position: refs/heads/master@{#418843}
-
scottmg authored
After https://codereview.chromium.org/2317203002 and https://build.chromium.org/p/chromium.fyi/builders/Browser%20Side%20Navigation%20Linux/builds/21220 BUG=607205,575210 TBR=clamy@chromium.org Review-Url: https://codereview.chromium.org/2336393002 Cr-Commit-Position: refs/heads/master@{#418842}
-
dominickn authored
This CL adds a browser test for desktop geolocation where persistence is toggled off, ensuring that the underlying content setting isn't changed. Additional checks of the content setting are added to the existing grant and block tests. This CL also simplifies the feature list setting used in the PermissionContextBase test. BUG=632269 Review-Url: https://codereview.chromium.org/2338173002 Cr-Commit-Position: refs/heads/master@{#418841}
-
robhogan authored
A third go at https://crrev.com/3c64df1fc98aa06eabfc18d1f5c2f2b0aec1a658 Although I still can't reproduce the clusterfuzz reports locally I'm confident this will cure the specific crashes because I'm no longer transforming the first line's text unless it has a distinct first-line style (:/). BUG=129669,644733 Review-Url: https://codereview.chromium.org/2339683004 Cr-Commit-Position: refs/heads/master@{#418840}
-
mstensho authored
If it's an exclusive end offset, we need to know this, so that we map to the former column set, rather than the latter, if the offset is at a column set boundary. Review-Url: https://codereview.chromium.org/2340213003 Cr-Commit-Position: refs/heads/master@{#418839}
-
robhogan authored
The spec (https://drafts.csswg.org/css-tables-3/#repeated-headers) tells us that we shouldn't bother repeating headers if a row of content doesn't fit. It's not clear what to do in the situation where it's just the first page that the row doesn't fit. I think we ultimately want to do the same as Edge/IE and still repeat the headers on subsequent pages. That would require a second layout pass to achieve so for now just drop the repeating headers if we can't fit a row on the first page. BUG=624814 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2 Review-Url: https://codereview.chromium.org/2326303002 Cr-Commit-Position: refs/heads/master@{#418838}
-
sataya.m authored
IFrame Scrollbar needs reconstruction. In the updateWidgetGeometry set frameview needs layout if frameview scrollbars needsreconstruction. BUG=492785 Review-Url: https://codereview.chromium.org/2314593003 Cr-Commit-Position: refs/heads/master@{#418837}
-
noyau authored
BUG=604851 Review-Url: https://codereview.chromium.org/2342793002 Cr-Commit-Position: refs/heads/master@{#418836}
-
hiroshige authored
This CL replaces EventSender in HTMLLinkElement with postTask(): Instead of calling HTMLLinkElement::dispatchPendingLoadEvents() in Document::implicitClose() to enforce <link>'s onload events to be executed before the document's onload event, this CL blocks document's onload until <link>'s onload event using IncrementLoadEventDelayCount. This CL also modifies SimTest: This CL potentially makes onload events of <link> and documents async and delayed, and thus SimTest can be destructed before document's onload event, which cause assertion failure. This CL calls testing::runPendingTasks() in ~SimTest() to flush scheduled onload events to make Document to be loaded before SimTest's destruction. BUG=624697 Review-Url: https://codereview.chromium.org/2275493002 Cr-Commit-Position: refs/heads/master@{#418835}
-
tasak authored
Make cc::SoftwareImageDecodeController, cc::GpuImageDecodeController, cc::ResourcePool, and cc::StagingBufferPool MemoryCoordinatorClient. - implement OnMemoryStateChange for background renderer's purge + suspend. So the method reduces memory only when state == SUSPENDED. - intent-to-implement-and-ship of background renderer's purge + suspend is https://groups.google.com/a/chromium.org/forum/#!topic/blink-dev/DK189tnM8l4 - one of the documents attached in the above intent is https://docs.google.com/document/d/1EgLimgxWK5DGhptnNVbEGSvVn6Q609ZJaBkLjEPRJvI/edit?usp=sharing BUG=635419 CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel Review-Url: https://codereview.chromium.org/2286583002 Cr-Commit-Position: refs/heads/master@{#418834}
-
ricea authored
There are a large number of mechanical changes of usages of WrapUnique() to MakeUnique(). The blame information for these is not useful as it does not reflect the people responsible for the code. Add the relevant commits to .git-blame-ignore-revs so that they will be skipped by git hyper-blame. R=mgiuca@chromium.org BUG=637812 Review-Url: https://codereview.chromium.org/2288683002 Cr-Commit-Position: refs/heads/master@{#418833}
-
yutak authored
It takes 1-3 seconds on Release and ~10 seconds on Debug. TBR=brucedawson@chromium.org BUG=647192 NOTRY=true Review-Url: https://codereview.chromium.org/2342803002 Cr-Commit-Position: refs/heads/master@{#418832}
-
rego authored
This is a refactoring patch which stores the definite/indefinite height detection in a new attribute m_hasDefiniteLogicalHeight in LayoutGrid. That way we just only call LayoutBlock::hasDefiniteLogicalHeight() once, from LayoutGrid::layoutBlock(). Then in LayoutGrid::gridTrackSize() we reuse the cached value. No new tests, no change of behavior. BUG=624301 Review-Url: https://codereview.chromium.org/2334133002 Cr-Commit-Position: refs/heads/master@{#418831}
-
yutak authored
This test consistently takes 2 seconds on Release and 10 seconds on Debug, thus it meets the bar of Slow tests. TBR=brucedawson@chromium.org BUG=647192 NOTRY=true Review-Url: https://codereview.chromium.org/2342043002 Cr-Commit-Position: refs/heads/master@{#418830}
-