- 30 Mar, 2016 30 commits
-
-
skia-deps-roller authored
https://chromium.googlesource.com/skia.git/+log/9b2ef62d4708..890579051d40 $ git log 9b2ef62d4..890579051 --date=short --no-merges --format='%ad %ae %s' 2016-03-29 djsollen Revert of Switch SkLocalMatrixImageFilter and SkPaintImageFilter over to sk_sp (patchset #6 id:100001 of https://codereview.chromium.org/1842793002/ ) 2016-03-29 herb Add repeatSpan and change interface name. 2016-03-29 robertphillips Switch SkLocalMatrixImageFilter and SkPaintImageFilter over to sk_sp CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel TBR=djsollen@google.com Review URL: https://codereview.chromium.org/1847443002 Cr-Commit-Position: refs/heads/master@{#383901}
-
noel authored
Manually recover the images from CL issue 561363002 and submit those images to LayoutTests/fast/images/resources TBR=msarett@chromium.org BUG=598949 NOTRY=true Review URL: https://codereview.chromium.org/1844833002 Cr-Commit-Position: refs/heads/master@{#383900}
-
tzik authored
The reply message of a Synchronous IPC was not tracked by existing tracing points, so the IPC handlers of synchronous IPCs are missed in the critical paths of other tasks. This CL adds a flow from the reply to the waiting IPC caller. So that the IPC handler is trackes as a preceding event of a followings on chrome://tracing. BUG=580902 Review URL: https://codereview.chromium.org/1840053002 Cr-Commit-Position: refs/heads/master@{#383899}
-
newt authored
"BookmarkThumbnailWidget" is no longer an appropriate name since the widget no longer shows thumbnails. This CL updates the name to simply "BookmarkWidget". BUG=593587 Review URL: https://codereview.chromium.org/1840193002 Cr-Commit-Position: refs/heads/master@{#383898}
-
yutak authored
PtrHash<T> is specialized over various smart pointer types, e.g. PtrHash<RefPtr<T>>. However, this abstraction is not necessary; there's no code requiring the specialized versions, and they are nothing more than individual class declarations. This patch gets rid of that abstraction. Additionally, hash functions for a raw pointer T* are now defined in PtrHash<T>, instead of PtrHash<T*>, in order to align with other XXXPtrHash class templates: for example, hash functions for RefPtr<T> are in RefPtrHash<T>, not in RefPtrHash<RefPtr<T>>. I think my setup is more idiomatic C++. BUG=581524 Review URL: https://codereview.chromium.org/1839003002 Cr-Commit-Position: refs/heads/master@{#383897}
-
jbudorick authored
This is a reland of https://codereview.chromium.org/1836883002/ BUG=428729 TBR=yfriedman@chromium.org Review URL: https://codereview.chromium.org/1839083003 Cr-Commit-Position: refs/heads/master@{#383896}
-
estade authored
custom theme. BUG=596136 Review URL: https://codereview.chromium.org/1813393002 Cr-Commit-Position: refs/heads/master@{#383895}
-
wez authored
This patch does two things: 1. Adds a flag to switch DCHECK from logging, dumping, and then crashing the process, to only uploading a crash dump, and only on the first failed DCHECK in each process. 2. Forces that flag, and DCHECK_ALWAYS_ON, on in Windows official builds. All non-debug e.g. CHECK behaviours remain unchanged; the intended effect is for DCHECKs to switch from no-ops to uploading dumps without crashing, in Windows official builds. Note that this CL is intended to be landed, a branch cut to release from, and then immediately reverted; it is not intended to be landed in Chromium for any longer period. BUG=596231 Review URL: https://codereview.chromium.org/1814423002 Cr-Commit-Position: refs/heads/master@{#383894}
-
skobes authored
ScopedLogger was removed in http://crrev.com/381906. The original review is on http://crrev.com/1379443002. Review URL: https://codereview.chromium.org/1840693002 Cr-Commit-Position: refs/heads/master@{#383893}
-
kozyatinskiy authored
R=pfeldman@chromium.org BUG=598885 Review URL: https://codereview.chromium.org/1837283002 Cr-Commit-Position: refs/heads/master@{#383892}
-
jamescook authored
They eventually get valid pointers assigned, but this makes the code clearer and prevents spurious warnings from editors (like Eclipse) that detect constructors with uninitialized data. BUG=none TEST=existing ash tests Review URL: https://codereview.chromium.org/1838343003 Cr-Commit-Position: refs/heads/master@{#383891}
-
thestig authored
BUG=122457 TBR=benwells@chromium.org Review URL: https://codereview.chromium.org/1834223007 Cr-Commit-Position: refs/heads/master@{#383890}
-
lushnikov authored
This behavior was regressed back in http://crrev.com/1649533003. BUG=598919 R=pfeldman, dgozman Review URL: https://codereview.chromium.org/1846433002 Cr-Commit-Position: refs/heads/master@{#383889}
-
slan authored
These variables should be declared when target_cpu is "arm", so that cross-compiles may use these arguments to determine how to build host tools. Related change in //v8: https://codereview.chromium.org/1839763003/ BUG=592660 Review URL: https://codereview.chromium.org/1842833003 Cr-Commit-Position: refs/heads/master@{#383888}
-
vmpstr authored
DisplayListRasterSource used to derive from RasterSource and there was another implementation. However, currently there's only one raster source and it doesn't derive from any common interface. Rename it to just be the RasterSource. R=enne CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Review URL: https://codereview.chromium.org/1837263005 Cr-Commit-Position: refs/heads/master@{#383887}
-
wolenetz authored
Reworks the StreamParser InitCB interface, MSE stream parsers, and the handling of CB to sum and record the counts of tracks by type across SourceBuffers for a MediaSource at the time of transitioning ChunkDemuxer to INITIALIZED in ChunkDemuxer::OnSourceInitDone(). Reporting of detected text track counts is included for WebM and ISO BMFF stream types, with minimal support added to the latter's parser in this CL to support their detection only. Note that CEA 608/708 caption data embedded within ISO BMFF video tracks is neither detected nor reported. Further, 'sbtl' handler_type is detected as text tracks in ISO BMFF, going beyond what the spec describes currently, but enabling detection of this subtitle track embedding produced by some ffmpeg encodes. No other new text track presence detection is added; it is still missing from some MSE parsers like mp2ts. Further, at most one each of audio and video tracks are detected by the mp2ts parser. BUG=595128, 336926 Review URL: https://codereview.chromium.org/1826583003 Cr-Commit-Position: refs/heads/master@{#383886}
-
dmazzoni authored
This makes the chrome://chrome-signin page accessible too. BUG=557429,587187,453157 CQ_INCLUDE_TRYBOTS=tryserver.chromium.linux:linux_site_isolation Review URL: https://codereview.chromium.org/1815933002 Cr-Commit-Position: refs/heads/master@{#383885}
-
dalecurtis authored
Simple change to the default controls that lets the user continue playback with subsequent play/pause button presses. Useful in cases where the error is transient (e.g., network related). In the event of an error the default controls will now pause playback. It'd be nice if we could restore current time in this case too, but it seems to be cleared in unpredictable ways upon decode error. BUG=none TEST=play after decode / network error restarts from beginning. Review URL: https://codereview.chromium.org/1827573004 Cr-Commit-Position: refs/heads/master@{#383884}
-
benchan authored
This CL removes the unnecessary inclusion of base/metrics/histogram.h (introduced by crrev.com/308221) in base/message_loop/incoming_task_queue.cc. The latter doesn't actually use any of the code provided by histogram.h BUG=None Review URL: https://codereview.chromium.org/1844693003 Cr-Commit-Position: refs/heads/master@{#383883}
-
nick authored
BUG=None CQ_INCLUDE_TRYBOTS=tryserver.chromium.linux:linux_site_isolation Review URL: https://codereview.chromium.org/1802163002 Cr-Commit-Position: refs/heads/master@{#383882}
-
nainar authored
This patch renames consumeImage to consumeImageOrNone to more accurately represent what the function does. It consumes an ident in the case CSSValueNone is specified and consumes an image otherwise. Review URL: https://codereview.chromium.org/1842523003 Cr-Commit-Position: refs/heads/master@{#383881}
-
wangxianzhu authored
During merging, display items that have been moved to new places have null client. Avoid crash during PaintController::showDebugData() so that we can dump data during merge. Review URL: https://codereview.chromium.org/1843863002 Cr-Commit-Position: refs/heads/master@{#383880}
-
eakuefner authored
BUG=catapult:#2102 Review URL: https://codereview.chromium.org/1845443002 Cr-Commit-Position: refs/heads/master@{#383879}
-
dtapuska authored
Replace one WebAudio logging with a VLOG(1) call. BUG=596760 Review URL: https://codereview.chromium.org/1837113002 Cr-Commit-Position: refs/heads/master@{#383878}
-
wfh authored
Depends on https://codereview.chromium.org/1830323005/ BUG=513354 Review URL: https://codereview.chromium.org/1837443002 Cr-Commit-Position: refs/heads/master@{#383877}
-
brettw authored
This mostly updates the language.md file. Review URL: https://codereview.chromium.org/1841013003 Cr-Commit-Position: refs/heads/master@{#383876}
-
jaydasika authored
BUG=598748 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Review URL: https://codereview.chromium.org/1837343002 Cr-Commit-Position: refs/heads/master@{#383875}
-
hcarmona authored
See screenshot in bug. BUG=595538 Review URL: https://codereview.chromium.org/1817123003 Cr-Commit-Position: refs/heads/master@{#383874}
-
ellyjones authored
BUG= Review URL: https://codereview.chromium.org/1842933002 Cr-Commit-Position: refs/heads/master@{#383873}
-
dtapuska authored
When wheel event listeners were moved to the layer tree instead of on individual layers in https://codereview.chromium.org/1639363002 We should have stopped hit testing on whether there was a wheel event listener or not. These properties are checked on the general page before processing the event. BUG=597913 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Review URL: https://codereview.chromium.org/1843813002 Cr-Commit-Position: refs/heads/master@{#383872}
-
- 29 Mar, 2016 10 commits
-
-
elijahtaylor authored
The switch to Monorail switched the Cr-Platform-ARC to Component Platform>ARC, also switch to domain bugs.chromium.org. BUG=monorail:1169 Review URL: https://codereview.chromium.org/1844733002 Cr-Commit-Position: refs/heads/master@{#383871}
-
jaydasika authored
BUG= CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Review URL: https://codereview.chromium.org/1840883002 Cr-Commit-Position: refs/heads/master@{#383870}
-
justincohen authored
BUG=474373 Review URL: https://codereview.chromium.org/1844613004 Cr-Commit-Position: refs/heads/master@{#383869}
-
ymalik authored
This CL adds the Layout.ScrollAnchor.AdjustedScrollOffset histogram which simply counts the number of times an adjustment is made. This CL also adds a UseCount to ScrollAnchor. The first metric gives us an overall idea of the number of times we adjust the scroll position. The UseCount tells us out of all the page visits, for how many of them did we have to adjust the scroll offset. BUG=596956 Review URL: https://codereview.chromium.org/1827793004 Cr-Commit-Position: refs/heads/master@{#383868}
-
nacl-deps-roller authored
https://chromium.googlesource.com/native_client/src/native_client.git/+log/a36a2c6d3a01..dabc9f016f3c $ git log a36a2c6d3..dabc9f016 --date=short --no-merges --format='%ad %ae %s' 2016-03-29 smklein PNaCl Dynamic Linking: Tests storing dependencies from command line in PLL. CQ_INCLUDE_TRYBOTS=tryserver.chromium.linux:linux_chromium_dbg_32_ng,linux_nacl_sdk_build TBR=mseaborn@chromium.org Review URL: https://codereview.chromium.org/1844723002 Cr-Commit-Position: refs/heads/master@{#383867}
-
baxley authored
for xcode-ninja, GENERATOR is set to xcode, and GENERATOR_FLAVOR is set to ninja. BUG= Review URL: https://codereview.chromium.org/1844563004 Cr-Commit-Position: refs/heads/master@{#383866}
-
nasko authored
CQ_INCLUDE_TRYBOTS=tryserver.chromium.linux:linux_site_isolation Review URL: https://codereview.chromium.org/1839223002 Cr-Commit-Position: refs/heads/master@{#383865}
-
sorin authored
This reverts commit e99ec407. It breaks the browser tests on all platforms due to: [3820:5896:0329/153506:WARNING:histogram_base.cc(131)] 2 histograms were created before reporting was enabled. [5572:3816:0329/153506:FATAL:l10n_util.cc(704)] Check failed: std::string::npos == pos (4294967295 vs. 559) Unexpectedly found a $2 placeholder in A supervised user can explore the web with your guidance. As the manager of a supervised user in Chrome, you can: ???allow or prohibit certain websites, ???review websites the supervised user has visited, and ???manage other settings. Creating a supervised user does not create a Google Account, and their bookmarks, browsing history, and other preferences will not follow them to other devices with Chrome Sync. After you create a new supervised user, you can manage their settings at any time, from any device, at <a target="_blank" href="$1">$2</a>. For more information, visit our <a target="_blank" href="https://support.google.com/chrome/?p=ui_supervised_users&hl=en">Help Center</a>. BUG=563722 NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true TBR=mahmadi@chromium.org Review URL: https://codereview.chromium.org/1842703004 Cr-Commit-Position: refs/heads/master@{#383864}
-
enne authored
These don't do anything but force the object to be created in the heap and then wrap them in a scoped_ptr. Callers can do that themselves without needing a second, static copy of every constructor. R=danakj@chromium.org CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Review URL: https://codereview.chromium.org/1840223002 Cr-Commit-Position: refs/heads/master@{#383863}
-
rockot authored
Shrinks Channel's read buffer back down to the maximum unused capacity any time its contents have been fully discarded. This prevents us from permanently wasting memory after a large IPC is transmitted. Based on work detailed in issue 529940, the max unused capacity has also been reduced from 256 kB down to 64 kB. In practice we rarely transmit messages larger than this, so the performance impact of these extra allocations should be negligible. BUG=593731,500019 R=amistry@chromium.org Review URL: https://codereview.chromium.org/1835933002 Cr-Commit-Position: refs/heads/master@{#383862}
-