- 06 Apr, 2015 40 commits
-
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/f5c0a23a..ddd534f1 Please follow these instructions for assigning/CC'ing issues: https://code.google.com/p/v8-wiki/wiki/TriagingIssues TBR=hablich@chromium.org,machenbach@chromium.org,yangguo@chromium.org,vogelheim@chromium.org Review URL: https://codereview.chromium.org/1061093002 Cr-Commit-Position: refs/heads/master@{#323972}
-
avi authored
BUG=471689 TEST=repro in bug 473859 no longer crashes Review URL: https://codereview.chromium.org/1052523006 Cr-Commit-Position: refs/heads/master@{#323971}
-
aiolos authored
BUG=474269 Review URL: https://codereview.chromium.org/1066663002 Cr-Commit-Position: refs/heads/master@{#323970}
-
alyssad authored
BUG=473845 Review URL: https://codereview.chromium.org/1048033004 Cr-Commit-Position: refs/heads/master@{#323969}
-
andresantoso authored
Our NSSegmentedControl customization for this UI never handled RTL layout. The fix is not pretty but it works. BUG=470516 Review URL: https://codereview.chromium.org/1059333003 Cr-Commit-Position: refs/heads/master@{#323968}
-
pkotwicz authored
BUG=474325 TBR=atwilson@chromium.org Review URL: https://codereview.chromium.org/1067693002 Cr-Commit-Position: refs/heads/master@{#323967}
-
brettw authored
This makes ppapi_shared link. This required many changes to gpu to match the structure of GYP in both component and non-component modes. BUG=470212 CQ_EXTRA_TRYBOTS=tryserver.chromium.linux:android_chromium_gn_compile_dbg,android_chromium_gn_compile_rel;tryserver.chromium.win:win8_chromium_gn_rel,win8_chromium_gn_dbg;tryserver.chromium.mac:mac_chromium_gn_rel,mac_chromium_gn_dbg Reland of https://codereview.chromium.org/1053203003/ Review URL: https://codereview.chromium.org/1061953002 Cr-Commit-Position: refs/heads/master@{#323966}
-
danakj authored
Go through a recorder instead of getting the canvas() from the PaintContext, so this will continue to work when the PaintContext is backed by a DisplayItemList instead of a canvas. R=sky BUG=466426 Review URL: https://codereview.chromium.org/1062813004 Cr-Commit-Position: refs/heads/master@{#323965}
-
jam authored
-make desktop/main.cc be a near empty file that calls out to separate files for main ("launcher" per naming discussions) or child process -remove ChildProcess and derived classs; one method is enough -remove unused mojo/shell/launcher_main.cc -use a more reasonable size window on desktop Review URL: https://codereview.chromium.org/1065433002 Cr-Commit-Position: refs/heads/master@{#323964}
-
shrike authored
should not run when the window is minimized, nor in the middle of a minimize animation; it refers to http://crbug.com/350329 as the bug related to fixing this problem. However, although the SpriteView registers for the NSWindowWillMiniaturizeNotification it doesn't check for its occurrence, and so does not actually recognize when a window is being minimized. As a result, the SpriteView's animation continues running when its window is miniaturized. This change adds a check for NSWindowWillMiniaturizeNotification and stops the animation when caught. This change also adds a unit test to confirm that the animation stops on window miniaturization. My SpinnerView class was based on SpriteView, which is how I discovered this bug. The fix and unit test both come from SpinnerView. BUG=472836 Review URL: https://codereview.chromium.org/1052973004 Cr-Commit-Position: refs/heads/master@{#323963}
-
zhaoqin authored
Revert of exclude net_unittests WebSocketEndToEndTest.HstsHttpsToWebSocket on mac Valgrind bot (patchset #1 id:1 of https://codereview.chromium.org/1062883002/) Reason for revert: the culprit CL is reverted (https://codereview.chromium.org/1066613002) Original issue's description: > exclude net_unittests WebSocketEndToEndTest.HstsHttpsToWebSocket on mac Valgrind bot > > BUG=474316 > NOTRY=true > TBR=estark@chromium.org > > Committed: https://crrev.com/fd1e7a8ac4b2f00100e902b26420f5fd1c2ea1da > Cr-Commit-Position: refs/heads/master@{#323954} TBR=estark@chromium.org,zhaoqin@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=474316 Review URL: https://codereview.chromium.org/1066553003 Cr-Commit-Position: refs/heads/master@{#323962}
-
sergeyu authored
Revert of Fix docked browser window sometimes appears onscreen after restart (patchset #1 id:1 of https://codereview.chromium.org/1055893003/) Reason for revert: Broke BrowserWindowCocoaTest.TestMinimizeState on 10.6: https://build.chromium.org/p/chromium.mac/builders/Mac10.6%20Tests/builds/762 Original issue's description: > Change IsMaximized() to return false if the window is in the dock, and > a unit test to make sure this is always the case. It turns out > -isZoomed can sometimes return YES for a docked window, which > sometimes results in the window becoming undocked on the next restart. > Please read the long entry in the bug report for a complete explanation > of how the change fixes the problem. > > BUG=452976 > > Committed: https://crrev.com/de8b6d82a032a4bde620e43e6c580850871d59d8 > Cr-Commit-Position: refs/heads/master@{#323928} TBR=avi@chromium.org,shrike@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=452976 Review URL: https://codereview.chromium.org/1061103003 Cr-Commit-Position: refs/heads/master@{#323961}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/64efd8c..d982612 TBR=jsbell@chromium.org,falken@chromium.org Review URL: https://codereview.chromium.org/1061843004 Cr-Commit-Position: refs/heads/master@{#323960}
-
danakj authored
Instead of accessing canvas() on the PaintContext directly, go through the PaintRecorder. This will enable us to stop backing the PaintContext with a Canvas for slimming-paint. R=oshima BUG=466426 Review URL: https://codereview.chromium.org/1056143002 Cr-Commit-Position: refs/heads/master@{#323959}
-
davidben authored
The empty context and not using a context are different. BUG=none Review URL: https://codereview.chromium.org/1053233003 Cr-Commit-Position: refs/heads/master@{#323958}
-
senorblanco authored
TBR=robertphillips@chromium.org BUG= Review URL: https://codereview.chromium.org/1061963002 Cr-Commit-Position: refs/heads/master@{#323957}
-
qiangchen authored
BUG=472334 TEST=WebRtcGetUserMediaBrowserTest.TraceVideoCaptureControllerPerformanceDuringGetUserMedia in content_browsertests Review URL: https://codereview.chromium.org/1057033002 Cr-Commit-Position: refs/heads/master@{#323956}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/94e5010..08b3249 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel TBR=msarett@google.com Review URL: https://codereview.chromium.org/1063703003 Cr-Commit-Position: refs/heads/master@{#323955}
-
zhaoqin authored
BUG=474316 NOTRY=true TBR=estark@chromium.org Review URL: https://codereview.chromium.org/1062883002 Cr-Commit-Position: refs/heads/master@{#323954}
-
rmcilroy authored
Adds support to extension_shell and ash_shell to use external V8 snapshot files in preparation for moving ChromeOS and ChromeCast to use this. Re-factors the chrome_content_browser_client and content/shell_content_browser_client to allow more reuse of the code which opens the V8 external snapshot for child processes by adding IsolateHolder::OpenV8FilesForChildProcesses. This does not yet switch ChromeOS to use external V8 snapshot files - this will be done in follow up CL https://codereview.chromium.org/1019123002. BUG=421063 Review URL: https://codereview.chromium.org/1019483002 Cr-Commit-Position: refs/heads/master@{#323953}
-
khorimoto authored
BUG=472677 Review URL: https://codereview.chromium.org/1061703003 Cr-Commit-Position: refs/heads/master@{#323952}
-
dcheng authored
It looks like the intent of this test is to make sure that the password prompt doesn't show up for a failed login in a subframe. However, the test is a bit odd: it races the form submit and navigation of the main frame. Presumably, this was done so NavigationObserver can wait for the top-level navigation of the page and observer success/failure of the test conditions. Since NavigationObserver can wait for subframes to load, just fix the test to wait for the subframe to commit. BUG=464764 Review URL: https://codereview.chromium.org/1059093003 Cr-Commit-Position: refs/heads/master@{#323951}
-
rch authored
Review URL: https://codereview.chromium.org/1063483002 Cr-Commit-Position: refs/heads/master@{#323950}
-
tfarina authored
This seems to be more consistent with the use of uint32_t type that is also used throughout in this API. BUG=None TEST=base_unittests --gtest_filter=MD5* R=thestig@chromium.org Review URL: https://codereview.chromium.org/1062673003 Cr-Commit-Position: refs/heads/master@{#323949}
-
dcastagna authored
The test fixture GpuMemoryBufferTest has been parametrized in terms of gfx::GpuMemoryBuffer::Format so that GpuMemoryBufferTest.Lifecycle can be run with different gfx::GpuMemoryBuffer::Format. gfx::GpuMemoryBuffer::BGRA_8888 has been added along with the already present RGBA_8888. BUG= Review URL: https://codereview.chromium.org/1055143003 Cr-Commit-Position: refs/heads/master@{#323948}
-
aurimas authored
- Chrome has been targetting 22 for a while now so updating to match it. - Chrome has deprecated ICS so raising minSdkVersion to 16. BUG=473837 Review URL: https://codereview.chromium.org/1061713002 Cr-Commit-Position: refs/heads/master@{#323947}
-
pkasting authored
navigation to localhost (in defiance of specs... but seemingly common). This still prevents navigation to any other IP with leading octet 0, and only allows 0.0.0.0 when it's actually entered in 4-component dotted-quad form. BUG=428046 TEST=Entering "0.0.0.0" in the address bar will navigate by default Review URL: https://codereview.chromium.org/1064453002 Cr-Commit-Position: refs/heads/master@{#323946}
-
rtenneti authored
Per net/quic/quic_protocol.h around line# 521. R=asvitkine@chromium.org, rch@chromium.org, isherman@chromium.org Review URL: https://codereview.chromium.org/1061753002 Cr-Commit-Position: refs/heads/master@{#323945}
-
sbc authored
This was merged with install-debian.wheezy.sysroot.py a long time ago. Review URL: https://codereview.chromium.org/1050983003 Cr-Commit-Position: refs/heads/master@{#323944}
-
pstew authored
This CL maps an ONC property for disabling L2TP connection monitoring via PPP LCP frames. BUG=463602 TEST=Expanded test ONC and JSON test sets Review URL: https://codereview.chromium.org/1058973002 Cr-Commit-Position: refs/heads/master@{#323943}
-
pkotwicz authored
Revert of Work on Windows GN component build. (patchset #8 id:140001 of https://codereview.chromium.org/1053203003/) Reason for revert: Reverting the CL because I think that it broke the GN compile on Linux - See http://build.chromium.org/p/chromium.linux/builders/Linux%20GN/builds/26255/steps/compile/logs/stdio Original issue's description: > Work on Windows GN component build. > > This makes ppapi_shared link. This required many changes to gpu to match the structure of GYP in both component and non-component modes. > > BUG=470212 > CQ_EXTRA_TRYBOTS=tryserver.chromium.linux:android_chromium_gn_compile_dbg,android_chromium_gn_compile_rel;tryserver.chromium.win:win8_chromium_gn_rel,win8_chromium_gn_dbg;tryserver.chromium.mac:mac_chromium_gn_rel,mac_chromium_gn_dbg > > Committed: https://crrev.com/b3c7880dc9e66ff449b23e2273b4f20abecba442 > Cr-Commit-Position: refs/heads/master@{#323937} TBR=dpranke@chromium.org,brettw@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=470212 Review URL: https://codereview.chromium.org/1057993004 Cr-Commit-Position: refs/heads/master@{#323942}
-
reveman authored
This cleans up the API a bit and allows the code to be unit tested. This also prevents ftruncate from being used on Android where shared memory is backed by Ashmem. Ashmem doesn't support ftruncate. BUG=466509 TEST=base_unittests --gtest_filter=DiscardableSharedMemoryTest.Shrink Review URL: https://codereview.chromium.org/1018743003 Cr-Commit-Position: refs/heads/master@{#323941}
-
rnephew authored
Switch all battery related device interaction from DeviceUtils to BatteryUtils. Currently they reside in device utils, which has a lot of functionality around a lot of different device interactions. This will consolidate all current and future power related phone interactions into one location. BUG=472763 Review URL: https://codereview.chromium.org/1057563002 Cr-Commit-Position: refs/heads/master@{#323940}
-
estark authored
Revert of Don't process HSTS/HPKP headers when host is an IP address (patchset #9 id:160001 of https://codereview.chromium.org/1059303002/) Reason for revert: This change seems to break WebSockets tests broken on Mac: https://build.chromium.org/p/chromium.mac/builders/Mac10.6%20Tests/builds/758 Tests need to be fixed before it can be re-landed. Original issue's description: > Don't process HSTS/HPKP headers when host is an IP address > > HSTS/HPKP headers should only be parsed when the host is not an IP > address. This change requires fixing the HSTS/HPKP tests to use > localhost test server URLs instead of 127.0.0.1, with a corresponding > cert. > > BUG=456712 > > Committed: https://crrev.com/8488b5886ccec4820578905acd42f95cf42f5b17 > Cr-Commit-Position: refs/heads/master@{#323913} TBR=rsleevi@chromium.org,palmer@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=456712 Review URL: https://codereview.chromium.org/1066613002 Cr-Commit-Position: refs/heads/master@{#323939}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/58826bb..64efd8c TBR=jsbell@chromium.org,falken@chromium.org Review URL: https://codereview.chromium.org/1062573005 Cr-Commit-Position: refs/heads/master@{#323938}
-
brettw authored
This makes ppapi_shared link. This required many changes to gpu to match the structure of GYP in both component and non-component modes. BUG=470212 CQ_EXTRA_TRYBOTS=tryserver.chromium.linux:android_chromium_gn_compile_dbg,android_chromium_gn_compile_rel;tryserver.chromium.win:win8_chromium_gn_rel,win8_chromium_gn_dbg;tryserver.chromium.mac:mac_chromium_gn_rel,mac_chromium_gn_dbg Review URL: https://codereview.chromium.org/1053203003 Cr-Commit-Position: refs/heads/master@{#323937}
-
danakj authored
This adds a ui::PaintRecorder that will be the gateway to the PaintContext internals. The rules are: 1) Make a PaintRecorder when you want to access the canvas. 2) Can not nest PaintRecorders. In the future PaintRecorder will also know how to deal with a DisplayItemList and provider a Canvas that records to a DisplayItem and each scoped PaintRecorder will produce DisplayItems to be cached. For now, just restructuring code to go through PaintRecorder and not nest recording. R=sadrul, sky BUG=466426 Review URL: https://codereview.chromium.org/1053143002 Cr-Commit-Position: refs/heads/master@{#323936}
-
thakis authored
https://chromium.googlesource.com/angle/angle/+log/99f075dad..51a1db16d BUG=82385 TBR=geofflang@chromium.org Review URL: https://codereview.chromium.org/1060583004 Cr-Commit-Position: refs/heads/master@{#323935}
-
mdjones authored
This change adds javascript to fill in the YouTube placeholders created by the distiller. the content security policy now allows for iframes from all sources (distiller closely controls which iframes are allowed). Some css has also been added to appropriately resize these iframes when the page is resized. This change will not work correctly by itself, it depends on the following CL to work correctly: https://codereview.chromium.org/1015463004 BUG=468862 Review URL: https://codereview.chromium.org/880983007 Cr-Commit-Position: refs/heads/master@{#323934}
-
rsleevi authored
This updates to the following revision: 4f90008545e0 (2015-04-02 03:34 -0400) It includes changes from revision bad2a08db205 (2015-02-17 17:53 +0000) to revision 4f90008545e0 (2015-04-02 03:34 -0400), listed at http://hg.mozilla.org/mozilla-central/log/4f90008545e0/netwerk/dns/effective_tld_names.dat R=pkasting@chromium.org BUG=37436 Review URL: https://codereview.chromium.org/1056383002 Cr-Commit-Position: refs/heads/master@{#323933}
-