- 11 Feb, 2016 38 commits
-
-
pmonette authored
This was caused by relying on the default implementation of IsInteractiveSetDefaultPermitted(). This CL also replace this function with an explicit member variable. BUG=583317 Review URL: https://codereview.chromium.org/1657933003 Cr-Commit-Position: refs/heads/master@{#374831}
-
mdjones authored
This change hides the fullscreen button for videos in Reader Mode and uses an empty implementation of ContentVideoViewEmbedder in case it is somehow triggered. This is a temporary measure until a proper fullscreen handler can be implemented. BUG=581943 Review URL: https://codereview.chromium.org/1674753002 Cr-Commit-Position: refs/heads/master@{#374830}
-
ryoh authored
BUG=510614 TEST=manually Review URL: https://codereview.chromium.org/1673703002 Cr-Commit-Position: refs/heads/master@{#374829}
-
brucedawson authored
If you convert a 64-bit pointer directly to a 32-bit or smaller integer then VS 2015 guesses (not unreasonably) that it might be an accidental pointer truncation. The standard fix is to use a double-cast, to a pointer-sized integer and then to DWORD. This fixes a C4311 "pointer truncation" warning introduced by crrev.com/1225183003 Warning C4312 (conversion from int to ptr of greater size) is suppressed in this project but adding double-casts for the reverse conversion keeps the code symmetrical and allows us to enable C4312 in the future. BUG=440500 Review URL: https://codereview.chromium.org/1684963003 Cr-Commit-Position: refs/heads/master@{#374828}
-
pkasting authored
This also fixes a small bug in the histogram recording of TabStripModelStatsRecorder::ActiveTabChanged() I spotted while doing this. BUG=none TEST=none Review URL: https://codereview.chromium.org/1675483002 Cr-Commit-Position: refs/heads/master@{#374827}
-
mattm authored
Fix API mismatch between NameConstraints::IsPermittedCert's subjectAltName param and ParseExtension. BUG=none Review URL: https://codereview.chromium.org/1685023002 Cr-Commit-Position: refs/heads/master@{#374826}
-
dcastagna authored
As described in crbug.com/524582, we observed a reduction in power consumption when this format is used to display videos directly using the WindowServer. The downside of this format is that a conversion from YUV to RGB will be performed on the GPU using GL when the VideoFrame has to be used from GL. BUG=524582 Review URL: https://codereview.chromium.org/1686443002 Cr-Commit-Position: refs/heads/master@{#374825}
-
jonross authored
This CL implements an explicit capture API that will be used for popups. This is a split of the review: https://codereview.chromium.org/1605773004/ Where this review encompasses only the Window Server functionality. The client lib code is just stubs for compilation. Full implementation of the client will follow in a separate review. TEST=EventDispatcherTest.SetExplicitCapture, EventDispatcherTest.ExplicitCaptureOverridesImplicitCapture, EventDispatcherTest.CaptureUpdatesActivePointerTargets, EventDispatcherTest.UpdatingCaptureStopsObservingPreviousCaputre, EventDispatcherTest.DestroyingCaptureWindowRemovesExplicitCapture BUG=533161 Review URL: https://codereview.chromium.org/1677513002 Cr-Commit-Position: refs/heads/master@{#374824}
-
kbr authored
BUG=558738 CQ_INCLUDE_TRYBOTS=tryserver.chromium.win:win_optional_gpu_tests_rel Review URL: https://codereview.chromium.org/1690483002 Cr-Commit-Position: refs/heads/master@{#374823}
-
dcastagna authored
BUG=524582 CQ_INCLUDE_TRYBOTS=tryserver.chromium.win:win_optional_gpu_tests_rel Review URL: https://codereview.chromium.org/1688623002 Cr-Commit-Position: refs/heads/master@{#374822}
-
msw authored
The FYI 'Chromium Mojo Android' bot is failing the apptests step: https://build.chromium.org/p/chromium.mojo/builders/Chromium%20Mojo%20Android ..."MojoRunnerApptests.apk is neither a directory nor file"... Also add other apptest targets from mojo:tests. BUG=NONE TEST=FYI bot gets closer to passing apptests step. R=sky@chromium.org TBR=ben@chromium.org Review URL: https://codereview.chromium.org/1683063003 Cr-Commit-Position: refs/heads/master@{#374821}
-
shess authored
SQLite's Pager structure is for internal use only, whereas sqlite3_file is a documented interface available to SQLite clients or extensions. Where Pager accesses the page cache with fallback to the disk file, sqlite3_file only accesses the disk file. This should not have significant performance impact (recover.c only reads a given block once), but the new version may not see modified pages in the page cache. For this reason, a shared lock is taken to guarantee that the on-disk format matches anything in the cache. BUG=584407 Review URL: https://codereview.chromium.org/1677193003 Cr-Commit-Position: refs/heads/master@{#374820}
-
rch authored
After fixing the TODO, this test should fail with the current code, but will pass once http://crbug.com/585876 is fixed Review URL: https://codereview.chromium.org/1683313002 Cr-Commit-Position: refs/heads/master@{#374819}
-
hiroshige authored
The test is flaky (leaking) on linux_chromium_asan_rel_ng after [1] is landed, but the flakiness seems not directly related to [1]. This CL temprarily disables the test to reland [1], because [1] fixes race conditions. [1] https://codereview.chromium.org/1641853003/ BUG=585026, 581565 Review URL: https://codereview.chromium.org/1680923003 Cr-Commit-Position: refs/heads/master@{#374818}
-
sadrul authored
Initialize various compoments that chromeos expects (e.g. dbus, bluetooth etc.) so that ash can launch correctly inside mus. BUG=585141 Review URL: https://codereview.chromium.org/1685313002 Cr-Commit-Position: refs/heads/master@{#374817}
-
agrieve authored
Reland of https://codereview.chromium.org/1683823002/ This improves build concurrency a little bit. BUG=none Review URL: https://codereview.chromium.org/1687723002 Cr-Commit-Position: refs/heads/master@{#374816}
-
kojii authored
This patch enables Oilpan data structures in the debug visualizers. Since Oilpan was enabled by default, some m_ptr needs to change to m_raw. Review URL: https://codereview.chromium.org/1672483004 Cr-Commit-Position: refs/heads/master@{#374815}
-
scottmg authored
R=sky@chromium.org, benwells@chromium.org BUG=558054 Review URL: https://codereview.chromium.org/1685883003 Cr-Commit-Position: refs/heads/master@{#374814}
-
tommycli authored
Some other ones on this bug may be obsolete. BUG=431213 TBR=rockot@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/1683303003 Cr-Commit-Position: refs/heads/master@{#374813}
-
skyostil authored
BUG=487937 CQ_EXTRA_TRYBOTS=tryserver.chromium.perf:linux_perf_bisect;tryserver.chromium.perf:mac_10_10_perf_bisect;tryserver.chromium.perf:win_perf_bisect;tryserver.chromium.perf:android_nexus5_perf_bisect Review URL: https://codereview.chromium.org/1663053006 Cr-Commit-Position: refs/heads/master@{#374812}
-
rockot authored
These were timing out for potentially two reasons: 1. 50000 iterations takes a long time to run in Debug builds. We should investigate why this slows down so much over time. Bug 585909 is filed for that. 2. If sending a message failed in a non-fatal way (e.g. EAGAIN) we were dropping the handles. Since this can happen flakily, the tests could block indefinitely waiting for handles that would never arrive. This CL fixes the handle dropping problem and reduces the test to run 500 iterations of 50 handles each. BUG=585784 TBR=sammc@chromium.org Review URL: https://codereview.chromium.org/1686243002 Cr-Commit-Position: refs/heads/master@{#374811}
-
fmalita authored
The animated-path-inside-transformed-html.xhtml suppression was temporarily removed for http://crrev.com/1511113004. BUG=581355 TBR=reed@google.com NOTRY=true Review URL: https://codereview.chromium.org/1688003003 Cr-Commit-Position: refs/heads/master@{#374810}
-
sunxd authored
MaxScrollOffset is removed from LayerImpl so that updating scrolling info does not need to touch LayerImpl unless a non-fast scrollable region is met (this is also planned to be removed from LayerImpl when hit testing list is available). ScrollTree now stores information about layer bounds, scroll clip layer bounds, bounds_delta and inner/outer viewport container/scroller layer info. Also needs to push page_scale_factor to TransformTree when updated. BUG=568830 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Review URL: https://codereview.chromium.org/1675963002 Cr-Commit-Position: refs/heads/master@{#374809}
-
pkasting authored
BUG=none TEST=none Review URL: https://codereview.chromium.org/1683913003 Cr-Commit-Position: refs/heads/master@{#374808}
-
jam authored
BUG=585964 Review URL: https://codereview.chromium.org/1691613002 Cr-Commit-Position: refs/heads/master@{#374807}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/4e3834b0..0c2e426f 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. TBR=hablich@chromium.org,machenbach@chromium.org,yangguo@chromium.org,vogelheim@chromium.org Review URL: https://codereview.chromium.org/1685303003 Cr-Commit-Position: refs/heads/master@{#374806}
-
yingran authored
This CL adds a clear browsing data button that navigates the user to the settings page. BUG=425625 Review URL: https://codereview.chromium.org/1585473003 Cr-Commit-Position: refs/heads/master@{#374805}
-
ortuno authored
Eventually sandboxed iframes may be explicitly granted the right to request permissions but for now we block any Bluetooth requests from sandboxed iframes. BUG=579691 Review URL: https://codereview.chromium.org/1672863002 Cr-Commit-Position: refs/heads/master@{#374804}
-
rch authored
BUG= Review URL: https://codereview.chromium.org/1680243005 Cr-Commit-Position: refs/heads/master@{#374803}
-
qinmin authored
Currently download cancel and download failure are treated in the same way. This causes the DownloadController to receive a download failure call when cancelling a download. And the DownloadNotificationService will show a failure notification after user hit cancel button. This CL splits download cancel from download failure. So when user cancels a download, we won't show the failure notification. BUG=579110 Review URL: https://codereview.chromium.org/1684293002 Cr-Commit-Position: refs/heads/master@{#374802}
-
lushnikov authored
The patch avoids serializing array indexes in getCompletions function. BUG=585877 R=pfeldman, kozyatinskiy Review URL: https://codereview.chromium.org/1685683006 Cr-Commit-Position: refs/heads/master@{#374801}
-
skia-deps-roller authored
https://chromium.googlesource.com/skia.git/+log/64e75330916f..1de415f2c33f $ git log 64e753309..1de415f2c --date=short --no-merges --format='%ad %ae %s' 2016-02-10 kjlubick Revert of Make SkPicture/SkImageGenerator default to SkCodec (patchset #7 id:120001 of https://codereview.chromium.org/1671193002/ ) 2016-02-10 scroggo Make SkPicture/SkImageGenerator default to SkCodec 2016-02-10 bsalomon Turn on conservative raster clip for GPU canvases GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1682223002 2016-02-10 egdaniel Finalize gpu shaders in ProgramBuilding. 2016-02-10 joshualitt Fix for mips build 2016-02-10 reed move compose-shader into base-class as factory 2016-02-10 joshualitt cleanup textblob cache sanity check and prevent it from bitrotting 2016-02-10 msarett Clean up comments in SkSwizzler 2016-02-10 mtklein Sk4f: floor() via int32_t roundtrip. 2016-02-10 msarett Enable ImageGenerator tests on direct raster and direct gpu backends 2016-02-10 ethannicholas Moved Canvas->JSON and JSON->Canvas functionality into SkDebugCanvas. SkJSONCanvas and SkJSONRenderer will be deleted once the debug server has been updated. GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1681643002 2016-02-10 caryclark Revert of Moved Canvas->JSON and JSON->Canvas functionality into SkDebugCanvas. (patchset #3 id:40001 of https://codereview.chromium.org/1681643002/ ) CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel;tryserver.chromium.win:win_clang_dbg TBR=kjlubick@google.com Review URL: https://codereview.chromium.org/1686553005 Cr-Commit-Position: refs/heads/master@{#374800}
-
dgrogan authored
The bug has an old repro that depends on whether the inner table is floated. This no longer seems to have an impact on our behavior. BUG=244182 Review URL: https://codereview.chromium.org/1682453004 Cr-Commit-Position: refs/heads/master@{#374799}
-
rob authored
BUG=585471 Review URL: https://codereview.chromium.org/1691453002 Cr-Commit-Position: refs/heads/master@{#374798}
-
dfalcantara authored
* Adds an icon to CCTs opened by Chrome that allows the user to open the URL in the full Chrome browser. * Allows CustomTabActivity to be finished() when it fires a PendingIntent that was created by Chrome itself. * Adds an icon for the "open in chrome" action. BUG=582539 Review URL: https://codereview.chromium.org/1683533002 Cr-Commit-Position: refs/heads/master@{#374797}
-
atotic authored
It gets tricky to match tests with their images without borders BUG= Review URL: https://codereview.chromium.org/1686433004 Cr-Commit-Position: refs/heads/master@{#374796}
-
mattm authored
The explicit sequence tag on the Name was not being stripped. BUG=none Review URL: https://codereview.chromium.org/1686003002 Cr-Commit-Position: refs/heads/master@{#374795}
-
kojii authored
When the writing-mode of ancestors of an orthogonal writing-mode root were changed, the orthogonal writing-mode root may no longer be orthogonal to its parent. However, since the style of the orthogonal writing-mode root was not changed, its styleDidChange() is not called and thus FrameView fails to track it. This patch checks children to mark or unmark as orthogonal roots when the writing-mode was changed after they were created. BUG=584185, 584210 Review URL: https://codereview.chromium.org/1672003002 Cr-Commit-Position: refs/heads/master@{#374794}
-
- 10 Feb, 2016 2 commits
-
-
imcheng authored
Add missing RuntimeEnabled=Presentation annotation to PresentationConnectionCloseEvent.idl. BUG=585879 TBR=mlamouri@chromium.org Review URL: https://codereview.chromium.org/1689453005 Cr-Commit-Position: refs/heads/master@{#374793}
-
loyso authored
Disclaimer: This CL is only about moving files and sections of code. We: - Remove Web prefixes on files/classes and add Compositor prefix where necessary. - Move exported/WebTransformKeyframe.cpp and exported/WebFilterKeyframe.cpp to animation/ to group them with their headers. - Move CompositorFilterOperations not to animation/ but to graphics/ folder, because it's a property of WebLayer. - Introduce CompositorFactory singleton (works as Platform) to create CC objects in blink. All animation methods are moved from CompositorSupport to CompositorFactory. Other methods are also expected to be moved there. - Decouple WebLayer and WebCompositorAnimation interfaces by using cc::Animation class. It allows us to make WebCompositorAnimation non-public. WebLayer animation dependencies will go away when we erase the old animation system (it's already disabled). http://crbug.com/575041 - Move static asserts from content/child/assert_matching_enums.cc to Source/platform/WebCompositorAnimation.cpp (so the enum becomes non-public). What's next (separate CLs): - Remove virtual functions (when gmock-based tests erased) - Remove redundant enum declarations (using alias). - Erase the animation delegate adapter. BUG=577016 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Review URL: https://codereview.chromium.org/1616653002 Cr-Commit-Position: refs/heads/master@{#374792}
-