- 27 Jan, 2016 40 commits
-
-
Walter Korman authored
https://chromium.googlesource.com/chromium/src/+/4f439fec8 BUG=579151 TBR=sigbjornf@opera.com Review URL: https://codereview.chromium.org/1633403003 . Cr-Commit-Position: refs/heads/master@{#371732}
-
fs authored
There is no invalid value default, so the missing value default will apply in that case too. The 'Unknown' HTMLAreaElement::Shape enumeration value is no longer needed, so remove it. Also add support for the non-conforming <area shape> values: * 'circ' (alias for 'circle') * 'polygon' (alias for 'poly') * 'rectangle (alias for 'rect') Because 'rect' (and hence 'rectangle') is the same as the missing value default we don't need any explicit checks for these values. https://html.spec.whatwg.org/multipage/embedded-content.html#attr-area-shape BUG=578125 Review URL: https://codereview.chromium.org/1632133007 Cr-Commit-Position: refs/heads/master@{#371731}
-
Walter Korman authored
https://chromium.googlesource.com/chromium/src/+/3e32a8e50 BUG=579365 TBR=samli@chromium.org Review URL: https://codereview.chromium.org/1638243002 . Cr-Commit-Position: refs/heads/master@{#371730}
-
Walter Korman authored
https://chromium.googlesource.com/chromium/src/+/9dd810a16 BUG=516751 TBR=vmpstr@chromium.org Review URL: https://codereview.chromium.org/1635423002 . Cr-Commit-Position: refs/heads/master@{#371729}
-
robertocn authored
Several android bots are failing v8.infinite_scrolling almost consistently. R=nednguyen,eakuefner,sullivan BUG=579546 CQ_EXTRA_TRYBOTS=tryserver.chromium.perf:linux_perf_bisect;tryserver.chromium.perf:win_perf_bisect Review URL: https://codereview.chromium.org/1638063002 Cr-Commit-Position: refs/heads/master@{#371728}
-
Walter Korman authored
https://chromium.googlesource.com/chromium/src/+/5a4c04591 BUG=530095 TBR=fmalita@chromium.org Review URL: https://codereview.chromium.org/1637343002 . Cr-Commit-Position: refs/heads/master@{#371727}
-
dpapad authored
- Stop passing the 'cr.webUIResponse' string from JS to C++ and again back to JS. - Restricting C++ response to JS to a single argument, since Promises can only be resolved with a single argument (this is also more consistent with Mojo-based communication). - Adding additional test cases. BUG=580633 Review URL: https://codereview.chromium.org/1635673003 Cr-Commit-Position: refs/heads/master@{#371726}
-
catapult-deps-roller authored
https://chromium.googlesource.com/external/github.com/catapult-project/catapult.git/+log/e314e3752a98..5c7b38de6fd5 $ git log e314e3752..5c7b38de6 --date=short --no-merges --format='%ad %ae %s' CQ_INCLUDE_TRYBOTS= TBR=catapult-sheriff@chromium.org Review URL: https://codereview.chromium.org/1635383002 Cr-Commit-Position: refs/heads/master@{#371725}
-
pdr authored
Revert of Speculative fix for ui::DisplayLinkMac::StopDisplayLink crashes (patchset #2 id:20001 of https://codereview.chromium.org/1626163002/ ) Reason for revert: Broke compile: ../../ui/accelerated_widget_mac/display_link_mac.cc:94:69: error: null passed to a callee that requires a non-null argument [-Werror,-Wnonnull] CVDisplayLinkSetOutputCallback(display_link_, nullptr, nullptr); ~~~~~~~ ^ Original issue's description: > Speculative fix for ui::DisplayLinkMac::StopDisplayLink crashes > > The CVDisplayLink is tied to a ScopedTypeRef data member of DisplayLinkMac. > However, there may be other references. Since there's no guarantee that > ~DisplayLinkMac() will invoke the last CVDisplayLinkRelease(..) and clear > the callback automatically, clear it explicitly in ~DisplayLinkMac. > > BUG=564780 > > Committed: https://crrev.com/2286ddf0119516f7a93feaff4f8ce2edff8c4543 > Cr-Commit-Position: refs/heads/master@{#371648} TBR=ccameron@chromium.org,tapted@chromium.org # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=564780 Review URL: https://codereview.chromium.org/1637313002 Cr-Commit-Position: refs/heads/master@{#371724}
-
Walter Korman authored
https://chromium.googlesource.com/chromium/src/+/38858c577 BUG=568196 TBR=senorblanco@chromium.org Review URL: https://codereview.chromium.org/1641513002 . Cr-Commit-Position: refs/heads/master@{#371723}
-
Walter Korman authored
https://chromium.googlesource.com/chromium/src/+/4c58d12a8 BUG=570611 TBR=leviw@chromium.org Review URL: https://codereview.chromium.org/1640603002 . Cr-Commit-Position: refs/heads/master@{#371722}
-
alancutter authored
This change ensures we don't add when we should be replacing composited "points" animations when list lengths are mismatched. BUG=530436 Review URL: https://codereview.chromium.org/1635363002 Cr-Commit-Position: refs/heads/master@{#371721}
-
xiaochengh authored
BUG=n/a TEST=n/a; no behavior change Review URL: https://codereview.chromium.org/1634603003 Cr-Commit-Position: refs/heads/master@{#371720}
-
Walter Korman authored
https://chromium.googlesource.com/chromium/src/+/99aaed809 BUG=569950 TBR=senorblanco@chromium.org Review URL: https://codereview.chromium.org/1640593002 . Cr-Commit-Position: refs/heads/master@{#371719}
-
cmumford authored
Common practice is to call Handle{Open/Read/Write}Result() when using the leveldb database. Those functions will close the db upon error - invalidating any open iterators. These calling functions use scoped_ptr's for iterators which, upon error, would delete an invalid leveldb::Iterator instance. ServiceWorkerDatabase::DeleteResourceRecords() ServiceWorkerDatabase::DeleteUserDataForRegistration() ServiceWorkerDatabase::GetAllRegistrations() ServiceWorkerDatabase::GetOriginsWithForeignFetchRegistrations() ServiceWorkerDatabase::GetOriginsWithRegistrations() ServiceWorkerDatabase::GetRegistrationsForOrigin() ServiceWorkerDatabase::ReadResourceIds() ServiceWorkerDatabase::ReadResourceRecords() ServiceWorkerDatabase::ReadUserDataForAllRegistrations() BUG=579624 Review URL: https://codereview.chromium.org/1635223002 Cr-Commit-Position: refs/heads/master@{#371718}
-
Walter Korman authored
https://chromium.googlesource.com/chromium/src/+/7003bed16 BUG=453040 TBR=fmalita@chromium.org Review URL: https://codereview.chromium.org/1638223002 . Cr-Commit-Position: refs/heads/master@{#371717}
-
Walter Korman authored
https://chromium.googlesource.com/chromium/src/+/19dc3bf7a BUG=568559 TBR=yjaeseok@gmail.com Review URL: https://codereview.chromium.org/1640073002 . Cr-Commit-Position: refs/heads/master@{#371716}
-
chrome-tpm authored
Cr-Commit-Position: refs/heads/master@{#371715}
-
calamity authored
This CL updates the site engagement service's score value for user input events. In order to maintain compatibility with current tests, old score values that are used for testing have been hard coded into SiteEngagementService. BUG=464234 Review URL: https://codereview.chromium.org/1622413002 Cr-Commit-Position: refs/heads/master@{#371714}
-
Walter Korman authored
https://chromium.googlesource.com/chromium/src/+/eec72142e BUG=524134 TBR=noel@chromium.org Review URL: https://codereview.chromium.org/1640063002 . Cr-Commit-Position: refs/heads/master@{#371713}
-
cmumford authored
leveldb iterators must be deleted before closing the database or else a crash will ensue. BUG=581474 Review URL: https://codereview.chromium.org/1639043002 Cr-Commit-Position: refs/heads/master@{#371712}
-
zmo authored
We do it in command buffer so it's duplicated validation. BUG=570453 TEST=webgl_conformance R=kbr@chromium.org,bajones@chromium.org Review URL: https://codereview.chromium.org/1639103002 Cr-Commit-Position: refs/heads/master@{#371711}
-
tsergeant authored
This allows <style> tags in HTML files to be checked for style guide errors. BUG=None Review URL: https://codereview.chromium.org/1639863004 Cr-Commit-Position: refs/heads/master@{#371710}
-
charliea authored
This is part of my (apparently neverending) goal to get the battor agent unit tests on the waterfall. TBR=zhenw@chromium.org,nednguyen@google.com Review URL: https://codereview.chromium.org/1634263004 Cr-Commit-Position: refs/heads/master@{#371709}
-
suzyh authored
Having deprecated stylesheet links with unsupported MIME types in https://codereview.chromium.org/1501393003, this patch removes the capability, updates the affected tests, and removes the UseCounter and deprecation warning. This patch also updates the preload scanner to ensure that the resources are not preloaded, and adds a test to check for this. BUG=286682 Review URL: https://codereview.chromium.org/1623403002 Cr-Commit-Position: refs/heads/master@{#371708}
-
tyoshino authored
The only caller ResourceLoader::willFollowRedirect() has ASSERT on redirectResponse. So, we can assert that it's not null here too. BUG=none R=mkwst Review URL: https://codereview.chromium.org/1634943003 Cr-Commit-Position: refs/heads/master@{#371707}
-
philipj authored
These macros are defined such that trailing semicolons (or inner semicolons) have no effect, and they are overwhealmingly used without semicolons, as per the documentation in ipc_message_macros.h. Review URL: https://codereview.chromium.org/1639713002 Cr-Commit-Position: refs/heads/master@{#371706}
-
lfg authored
BUG=576864 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Review URL: https://codereview.chromium.org/1640483003 Cr-Commit-Position: refs/heads/master@{#371705}
-
jbauman authored
process_->GetProcess() will fail in this case, so don't bother with these checks. In this case they don't matter because the GPU isn't being sandboxed anyway. BUG=580921 Review URL: https://codereview.chromium.org/1638623002 Cr-Commit-Position: refs/heads/master@{#371704}
-
pfeldman authored
BUG= Review URL: https://codereview.chromium.org/1638563002 Cr-Commit-Position: refs/heads/master@{#371703}
-
qiankun.miao authored
This CL adds missed uniform type in https://codereview.chromium.org/1349793004. Full supported uniform type can be found in Table 2.10, es spec 3.0.4 page 64. BUG=429053 Review URL: https://codereview.chromium.org/1635973002 Cr-Commit-Position: refs/heads/master@{#371702}
-
wkorman authored
Fixing up unit tests was somewhat complex due to XP being used as a key test case throughout. We have essentially updated the unit tests here to treat Win7 as the new XP, and Win10 the way Win7 was previously. Also remove dead ALL_BASELINE_VARIANTS constant and accessor methods, and document the one remaining (used by queries_unittest.py) for subsequent cleanup. BUG=581240 Review URL: https://codereview.chromium.org/1624373005 Cr-Commit-Position: refs/heads/master@{#371701}
-
catapult-deps-roller authored
https://chromium.googlesource.com/external/github.com/catapult-project/catapult.git/+log/713f7a351c2c..e314e3752a98 $ git log 713f7a351..e314e3752 --date=short --no-merges --format='%ad %ae %s' CQ_INCLUDE_TRYBOTS= TBR=catapult-sheriff@chromium.org Review URL: https://codereview.chromium.org/1639963003 Cr-Commit-Position: refs/heads/master@{#371700}
-
cbiesinger authored
Our handling of it is pretty incorrect, leading to very poor results. See the testcase in the bug. This was caused by https://codereview.chromium.org/1421423005 BUG=580196 R=leviw@chromium.org Review URL: https://codereview.chromium.org/1631033003 Cr-Commit-Position: refs/heads/master@{#371699}
-
noel authored
The image is suitable for -webkit-border-image layout tests wanting a border image with a color profile (sRGB in this test image). TBR=radu.velea@intel.com BUG=537077 NOTRY=true Review URL: https://codereview.chromium.org/1636503007 Cr-Commit-Position: refs/heads/master@{#371698}
-
yosin authored
This patch introduces |SelectionAdjuster| class to consolidate functions adjusting DOM tree version and composed tree version of selections in |VisibleSelection| class and |SelectionEditor| in one place to avoid having six parameters constructor, and rude name function |createWithoutValidation()| to simplify source code for improving readability. Note: For ease of reviewing to compare changes, this patch doesn't leave functions in original place. Following patch moves them to "SelectionAdjust.{cpp,h}". This patch is a preparation of introducing |m_hasTrailingWhitespace| into |VisibleSelection| class, which makes six parameters constructor to seven parameters constructor without this patch. BUG=n/a TEST=n/a; no behavior changes Review URL: https://codereview.chromium.org/1630903005 Cr-Commit-Position: refs/heads/master@{#371697}
-
rjkroege authored
The ozone gbm overlay candidate maintains a cache of layer configurations that have previously been validated by the kernel display system. This is unnecessary. Relocate the cache to the global overlay manager to simplify the implementation of pluggable host to gpu communication. BUG=558602 Review URL: https://codereview.chromium.org/1631073002 Cr-Commit-Position: refs/heads/master@{#371696}
-
oshima authored
* Do not convert inputs for child frames because they're already converted * Use 1x dsf for the child frame's surface. This is a stopgap solution. I'll address it in a separate CL. * Convert the guest view size to css in browser_plugin as all use of the size expects css coordinates. BUG=485650 TEST=WebViewWithZoomForDSFTest.* Review URL: https://codereview.chromium.org/1586923002 Cr-Commit-Position: refs/heads/master@{#371695}
-
jyw authored
Workaround to fix playback of some 22050 Hz sample rate TuneIn radio stations that do not play through optical out on some AVRs. In particular, Denon receivers do not support 22050 Hz optical out playback. The audio is resampled to either the current mixer output sample rate (if valid) and kFallbackSampleRate (48000 Hz) otherwise. BUG=internal b/26385501 TEST=fling 22050 Hz sample rate WAV file 1) to a freshly booted device, and 2) to a device that was playing a 64 kHz sample rate WAV file. Review URL: https://codereview.chromium.org/1632393002 Cr-Commit-Position: refs/heads/master@{#371694}
-
petewil authored
Use a list of observers instead of creating a new one each time, so we only have one per tab. BUG=577735 Review URL: https://codereview.chromium.org/1637613003 Cr-Commit-Position: refs/heads/master@{#371693}
-