- 28 Jan, 2016 40 commits
-
-
alancutter authored
This change ensures that we force an animation update when an @keyframe rule's keyframe offset is modified via script. BUG=581966 Review URL: https://codereview.chromium.org/1649663002 Cr-Commit-Position: refs/heads/master@{#372189}
-
tedchoc authored
BUG=581949 Review URL: https://codereview.chromium.org/1648783003 Cr-Commit-Position: refs/heads/master@{#372188}
-
bajones authored
BUG=563613 Committed: https://crrev.com/838ca1836eae1357a3b9135e808266d7d28bd3fa Cr-Commit-Position: refs/heads/master@{#371062} Review URL: https://codereview.chromium.org/1505343003 Cr-Commit-Position: refs/heads/master@{#372187}
-
yolandyan authored
BUG= Review URL: https://codereview.chromium.org/1643003002 Cr-Commit-Position: refs/heads/master@{#372186}
-
lhchavez authored
{{field.ordinal}} is not defined anymore, which was causing 'None's to get printed in the generated code. This change makes the tag generation consistnt with the C++ binding: it assigns ordinals in the order in which they appear in the file. BUG=582186 TEST=pipe_control_messages.mojom builds under Java Review URL: https://codereview.chromium.org/1646963002 Cr-Commit-Position: refs/heads/master@{#372185}
-
Nico Weber authored
All three run fine on the ClangToTMacASan bot, and on the main memory waterfall linux asan bot. BUG=none R=thestig@chromium.org Review URL: https://codereview.chromium.org/1644943003 . Cr-Commit-Position: refs/heads/master@{#372184}
-
senorblanco authored
filterBounds() is performed in device space, which matches cc's use case (determining the device-space size of a texture to allocate) more closely. Since it also supports the crop rect, this fixes filter regions for accelerated reference filters (crbug.com/240845). BUG=240845 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Review URL: https://codereview.chromium.org/1643983002 Cr-Commit-Position: refs/heads/master@{#372183}
-
mseaborn authored
The use was moved to StackFrameDepth.cpp by an earlier change. BUG=420515 TEST=build Review URL: https://codereview.chromium.org/1642983002 Cr-Commit-Position: refs/heads/master@{#372182}
-
skia-deps-roller authored
https://chromium.googlesource.com/skia.git/+log/682ee016a35c..317a45e87988 $ git log 682ee016a..317a45e87 --date=short --no-merges --format='%ad %ae %s' 2016-01-28 scroggo Update SK_IMAGE_VERSION to test RAW CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel TBR=msarett@google.com Review URL: https://codereview.chromium.org/1639253006 Cr-Commit-Position: refs/heads/master@{#372181}
-
reveman authored
This improves placement of normal top-level windows by delaying widget creation until a time when an initial size has been provided by the client. This also makes the standard usage of shell surfaces simpler by requiring bindings that want to prevent the surface from being mapped to mark it as disabled. Shell surfaces are enabled by default. BUG=549781 TEST=exo_unittests Review URL: https://codereview.chromium.org/1645043003 Cr-Commit-Position: refs/heads/master@{#372180}
-
vichang authored
Work Chrome runs in environment without a proper mmap support. Disable it for all work chrome. BUG=554269 Review URL: https://codereview.chromium.org/1637683003 Cr-Commit-Position: refs/heads/master@{#372179}
-
brucedawson authored
This updates ffmpeg to work around a VC++ 2015 Update 1 code-gen bug. https://chromium.googlesource.com/chromium/third_party/ffmpeg.git/+log/2ab535183e2f..2f698edc4eb0 2016-01-28 brucedawson Workaround VC++ 2015 Update 1 code-gen bug TBR=dalecurtis@chromium.org BUG=581768,440500 Review URL: https://codereview.chromium.org/1642053003 Cr-Commit-Position: refs/heads/master@{#372178}
-
nick authored
BUG=None TEST=compiles TBR=piman@chromium.org Review URL: https://codereview.chromium.org/1647553003 Cr-Commit-Position: refs/heads/master@{#372177}
-
fs authored
Just set the parse status to the (new) error code for "zero value" or "negative value" and let it propagate. This makes SVGDocumentExtensions::reportWarning dead, so remove it. BUG=231612 Review URL: https://codereview.chromium.org/1645043002 Cr-Commit-Position: refs/heads/master@{#372176}
-
ananta authored
The WM_SETTINGCHANGE message is broadcasted to top level windows, in multiple cases, one of them being work area changes, which could occur due to taskbar settings change, i.e autohide to taskbar being turned off, etc. We need to ensure that we handle this correctly specifically for maximized windows, where in we don't want to draw over the taskbar. This is handled today in our WM_NCCALCSIZE handler. Forcing a WM_NCCALCSIZE message to occur in WM_SETTINGCHANGE fixes these problems. BUG=581779 Review URL: https://codereview.chromium.org/1645843002 Cr-Commit-Position: refs/heads/master@{#372175}
-
danakj authored
These methods need their names to be lowercase for STL use and for range-based for loops to work. R=dcheng BUG=581566 Review URL: https://codereview.chromium.org/1647763002 Cr-Commit-Position: refs/heads/master@{#372174}
-
sky authored
I need to special case rendering of the root. BUG=566155 TEST=none R=fsamuel@chromium.org, sadrul@chromium.org Review URL: https://codereview.chromium.org/1648033002 Cr-Commit-Position: refs/heads/master@{#372173}
-
kapishnikov authored
Added new libraries to the Chromium third-party library collection: 1. Netty 4 Server. See http://netty.io 2. Netty fork of Tomcat Native (netty-tcnative). See http://netty.io/wiki/forked-tomcat-native.html and the library tc-native depends on: 3. 'Apache Portable Runtime'. See http://apr.apache.org The server provides support for Http/2 protocol, which is needed for testing some of the Cronet features on Android, in particular, the new Bidirectional Streaming API. To build the netty-tcnative library call: ninja -C out/Debug netty-tcnative The output files can be found here: - out/Debug/lib/libnetty-tcnative.so - out/Debug/lib.java/netty-tcnative.jar BUG=563732 Committed: https://crrev.com/6dd98af3db0b8e809ed95ff66620181efbf3f8f1 Cr-Commit-Position: refs/heads/master@{#370791} Review URL: https://codereview.chromium.org/1537473002 Cr-Commit-Position: refs/heads/master@{#372172}
-
wangxianzhu authored
Previously they ignored PaintPhaseSelfBlockBackgroundOnly and painted their own backgrounds in PaintPhaseDescendantBlockBackgroundsOnly behind cell. Now paint their own backgrounds in PaintPhaseBlockBackground or PaintPhaseSelfBlockBackgroundOnly phase to be consistent with other painters. BUG=574938 TEST=PaintLayerPainterTest.PaintPhaseBlockBackground Review URL: https://codereview.chromium.org/1646743002 Cr-Commit-Position: refs/heads/master@{#372171}
-
thestig authored
MSAN: Disable a failing test. BUG=567439,581368,582177,582185 TBR=zhaoqin@chromium.org Review URL: https://codereview.chromium.org/1644143002 Cr-Commit-Position: refs/heads/master@{#372170}
-
nacl-deps-roller authored
https://chromium.googlesource.com/native_client/src/native_client.git/+log/c62fcaf3ffcc..f5bc68c59b14 $ git log c62fcaf3f..f5bc68c59 --date=short --no-merges --format='%ad %ae %s' 2016-01-28 stichnot Update revision for PNaCl 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/1641253004 Cr-Commit-Position: refs/heads/master@{#372169}
-
twellington authored
Our enhanced bookmark activities call a method that ends up wrapping our window callback proxy. Our asserts in BaseChromiumApplication fail because the class of the Window callback has been changed. Extend the asserts to cover the ToolbarCallbackWrapper case. BUG=581927 Review URL: https://codereview.chromium.org/1646623003 Cr-Commit-Position: refs/heads/master@{#372168}
-
primiano authored
Overview of the cleanup: ------------------------ - In the context of the discussion in https://goo.gl/K2m649 our illustrious base/ owners suggested that having base being the only target depending on allocator (and having the other targets inherit that recursively) would be a more scalable solution, as opposite to having to remember to add an exec -> allocator to each target. - This base -> allocator dep landed in crrev.com/1616793003. - After that CL, until this point, many targets got two paths that lead to allocator: 1. The indirect one via base (content_shell -> base -> allocator) which is what we want to preserve. 2. The direct one (content_shell -> allocator) which is the inconsistent one we want to drop. This CL gets rid of all the instances of 2. The nice property of this sequencing of CLs is that the effect of this large change on the final .ninja files is minimal. See details below. Effect on the produced ninja files: ----------------------------------- GYP, Linux, static build: https://paste.ee/p/RaJLj Just some small reordering of include paths. Dropping --rdynamic (as expected) in keyboard_unittests GN, Linux, static build: https://paste.ee/p/zYtrQ Various targets lose the dependency on allocator.stamp (expected, the order is enforced by depending on base which depends on allocator.stamp) GN, Android (both component and static are similar): https://paste.ee/p/Iq6DD As above. GN, Linux, component build: https://paste.ee/p/jHUmv This is the most juicy change. As expected all the ODR goes away and random targets stop re-linking tcmalloc .o files. GYP, Win, static: https://paste.ee/p/j0IjL Extremely minimal changes: All.ninja stops depending on libcmt.lib. Sounds fine as base (which depends on that) is definitely depending on libcmt. GN, Win, static: https://paste.ee/p/Q6zTo Minimal change, like Linux GN, dropping dependencies on the .stamp files. BUG=564618 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Review URL: https://codereview.chromium.org/1647453002 Cr-Commit-Position: refs/heads/master@{#372167}
-
catapult-deps-roller authored
https://chromium.googlesource.com/external/github.com/catapult-project/catapult.git/+log/cc5156bed8f2..30fc26015d6c $ git log cc5156bed..30fc26015 --date=short --no-merges --format='%ad %ae %s' CQ_INCLUDE_TRYBOTS= TBR=catapult-sheriff@chromium.org Review URL: https://codereview.chromium.org/1638283005 Cr-Commit-Position: refs/heads/master@{#372166}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/5cf54653..ad0dc0dc 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/1647923003 Cr-Commit-Position: refs/heads/master@{#372165}
-
wkorman authored
Review URL: https://codereview.chromium.org/1649853002 Cr-Commit-Position: refs/heads/master@{#372164}
-
oshima authored
BUG=485650,580373 TEST=LayoutTests/fast/hidpi/image-set-as-background-with-zoom.html Review URL: https://codereview.chromium.org/1634023002 Cr-Commit-Position: refs/heads/master@{#372163}
-
wangxianzhu authored
By storing the cache into PaintLayer, we can avoid PaintLayer::m_clipper and reduce 2 pointers to 1 pointers in PaintLayer for the clipper. BUG=581124 Review URL: https://codereview.chromium.org/1640843003 Cr-Commit-Position: refs/heads/master@{#372162}
-
jmadill authored
These tests are flaking in a lot of different places on ANGLE's try bots and CQ, causing developer headaches. Marking them as flaky should fix the bots until we can figure out if there's a problem, and also still protect against real failures. BUG=582083 Review URL: https://codereview.chromium.org/1642103002 Cr-Commit-Position: refs/heads/master@{#372161}
-
skia-deps-roller authored
https://chromium.googlesource.com/skia.git/+log/83024f99d602..682ee016a35c $ git log 83024f99d..682ee016a --date=short --no-merges --format='%ad %ae %s' 2016-01-28 halcanary SkPDF: roll back 53b1c09 and 05b48e2 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel TBR=msarett@google.com Review URL: https://codereview.chromium.org/1645143002 Cr-Commit-Position: refs/heads/master@{#372160}
-
wkorman authored
Review URL: https://codereview.chromium.org/1641293002 Cr-Commit-Position: refs/heads/master@{#372159}
-
amistry authored
Review URL: https://codereview.chromium.org/1649633002 Cr-Commit-Position: refs/heads/master@{#372158}
-
geofflang authored
https://chromium.googlesource.com/angle/angle.git/+log/5b74bd3..eaaeb7f TBR=jmadill@chromium.org BUG=540829,522967 TEST=bots Review URL: https://codereview.chromium.org/1642163002 Cr-Commit-Position: refs/heads/master@{#372157}
-
dschuyler authored
This CL changes the radio buttons that expand when selecting NewTabPage options in Appearance settings. BUG=531786 Review URL: https://codereview.chromium.org/1644853002 Cr-Commit-Position: refs/heads/master@{#372156}
-
jdufault authored
Review URL: https://codereview.chromium.org/1644123002 Cr-Commit-Position: refs/heads/master@{#372155}
-
tmartino authored
Changes to Autofill settings page to ensure Credit Card list is always at least partially visible on small screens (tested safe to 440px). BUG=575804 Review URL: https://codereview.chromium.org/1583293004 Cr-Commit-Position: refs/heads/master@{#372154}
-
qinmin authored
There is no good explanation of the crash: 1. When clicking on a dangerous download, we set mPendingRequest and start the infobar. 2. When user dismiss the infobar, we reset mPendingRequest. 3. If mPendingRequest is non null, a 2nd request will not trigger any infobar. So at anytime, there are at most 1 dangerous infobar. And if mPendingRequest is non null, there should be an infobar showing, vice versa. So this a speculative fix to the crash from the crash stack we have seen. BUG=579707 Review URL: https://codereview.chromium.org/1614453003 Cr-Commit-Position: refs/heads/master@{#372153}
-
ahest authored
Definition of uint32 used here is from third_party/smhasher/src/City.h, which is probably not desired. BUG= Review URL: https://codereview.chromium.org/1644963002 Cr-Commit-Position: refs/heads/master@{#372152}
-
robertphillips authored
Revert of Disable deprecated Skia xfermodes (patchset #1 id:1 of https://codereview.chromium.org/1644703002/ ) Reason for revert: Going to go a different direction with this. Original issue's description: > Disable deprecated Skia xfermodes > > This is a companion to https://codereview.chromium.org/1645633003/ (Hide SkPixelXorXfermode from Chrome) > > Committed: https://crrev.com/583be684fbad6f0c013ebe7e7b186c589386a926 > Cr-Commit-Position: refs/heads/master@{#371905} TBR=reed@google.com,fmalita@chromium.org # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true Review URL: https://codereview.chromium.org/1641213002 Cr-Commit-Position: refs/heads/master@{#372151}
-
jaydasika authored
We then store the sorting context id in transform nodes and use it to determine layer and surface backface visibility. This patch also fixes a bug in backface visibility computation when we have nested 3d rendering contexts. BUG=568746,581570 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Review URL: https://codereview.chromium.org/1624693004 Cr-Commit-Position: refs/heads/master@{#372150}
-