- 21 Jan, 2016 40 commits
-
-
dgrogan authored
It got busted after the repository merge. You still have to run it from third_party/WebKit. It doesn't work if you run it from src/. Also update comment to note that it now does reorder gyp(i) entries. Tested locally by doing a dummy move in each of chromium and blink. Review URL: https://codereview.chromium.org/1614633002 Cr-Commit-Position: refs/heads/master@{#370778}
-
daniimms authored
If the unit test is run and the DCHECK fails on an Android device it will crash the browser and report unknown to the test runner for this test and all successive tests, making it difficult to find the failing assertion and failing test. BUG=NONE Review URL: https://codereview.chromium.org/1617593004 Cr-Commit-Position: refs/heads/master@{#370777}
-
skia-deps-roller authored
https://chromium.googlesource.com/skia.git/+log/233bab918f1c..19032f72165f $ git log 233bab918..19032f721 --date=short --no-merges --format='%ad %ae %s' 2016-01-21 msarett Use fActualProc to choose fFastProc or fSlowProc in SkSwizzler 2016-01-21 senorblanco Fix bounds computations for SkDisplacementMapEffect with negative scale. 2016-01-21 mtklein DM: dump images for task failures too (but not skipped tasks) 2016-01-21 scroggo Add version number to images tested in DM 2016-01-21 mtklein Demo fuzz for Herb CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel TBR=benjaminwagner@google.com Review URL: https://codereview.chromium.org/1615073003 Cr-Commit-Position: refs/heads/master@{#370776}
-
dgrogan authored
Directories other than paint/ use it now. BUG=499321 Review URL: https://codereview.chromium.org/1616643002 Cr-Commit-Position: refs/heads/master@{#370775}
-
robliao authored
gfx::Display is designed to be copied, so no one should inherit from gfx::Display. BUG=426656 Review URL: https://codereview.chromium.org/1614953003 Cr-Commit-Position: refs/heads/master@{#370774}
-
lushnikov authored
BUG=579770 R=pfeldman, dgozman Review URL: https://codereview.chromium.org/1614563002 Cr-Commit-Position: refs/heads/master@{#370773}
-
mcasas authored
(This is a refry of https://crrev.com/1566263002 with the bitrate allocation algorithm in Blink ISO Chrome). Original description: -------------------------------------- This CL updates MediaRecorderOptions to reflect the bitrate settings in the spec [1]. Those params are wired all the way down to {Video,Audio}TrackEncoder where they are used to configure libvpx and opus, resp. If param |bitsPerSecond| overrides the other two if specified and the spec leaves down to the UA to divide its value among video and audio: this CL allocates 90% to video and 10% to audio. Also added a DCHECK for opus #channels and sampling rate, which opus hardcode-limits in a pretty clumsy way (feast your eyes in [2]). -------------------------------------------------------------- Diffs with this previous CL: - Chrome gets just the consolidated audio and video bit rates. - The bit rate calculation micro algorithm is in MediaRecorder.cpp - Added a LayoutTest checking for throwing when the rates are too high. BUG=575301 [1] https://rawgit.com/w3c/mediacapture-record/master/MediaRecorder.html#MediaRecorderOptions [2] https://code.google.com/p/chromium/codesearch#chromium/src/third_party/opus/src/src/opus_encoder.c&sq=package:chromium&type=cs&l=169 BUG=575301 Review URL: https://codereview.chromium.org/1610473002 Cr-Commit-Position: refs/heads/master@{#370772}
-
kerrnel authored
Revert of Have each SandboxedProcessLauncherDelegate maintain a zygote. (patchset #15 id:440001 of https://codereview.chromium.org/1532423003/ ) Reason for revert: Revert "Have each SandboxedProcessLauncherDelegate maintain a zygote." This reverts commit 3c1e16b4. This broke the Site Isolation FYI bot failure: https://build.chromium.org/p/chromium.fyi/builders/Site%20Isolation%20Linux/builds/7700 To re-land the CL, that failure needs to be diagnosed and corrected. Original issue's description: > Have each SandboxedProcessLauncherDelegate maintain a zygote. > > To improve component updates of PPAPI plugins, Chrome needs multiple zygotes. > This will allow the PPAPI zygote to be recreated when a plugin is updated. > This CL allows Chrome to maintain a zygote for each process type by having > each SandboxedProcessLauncherDelegate maintain a class which can communicate > with its respective zygote. This CL will be followed up with work to allow > customization of zygotes, which will give Chrome the improve component update > experience. > > BUG=569191 > > Committed: https://crrev.com/3c1e16b490255119b6f70f94d1716645e897b185 > Cr-Commit-Position: refs/heads/master@{#370488} TBR=mdempsky@chromium.org,thestig@chromium.org,avi@chromium.org,mseaborn@chromium.org # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=569191 Review URL: https://codereview.chromium.org/1617213002 Cr-Commit-Position: refs/heads/master@{#370771}
-
mikecase authored
BUG=516018 Review URL: https://codereview.chromium.org/1618703005 Cr-Commit-Position: refs/heads/master@{#370770}
-
tfarina authored
Now that we are using C++11, moveable types inside containers are supported and ScopedVector will be removed. So we should migrate to a solution that does not use ScopedVector. Unfortunately children() accessor complicates the things and does not allow us to easily use std::vector<scoped_ptr<NodeType>>, so another solution with STLDeleteElements was choosen. BUG=554289 TEST=ui_base_unittests --gtest_filter=*Tree* R=sky@chromium.org Review URL: https://codereview.chromium.org/1619733003 Cr-Commit-Position: refs/heads/master@{#370769}
-
xhwang authored
BUG=b/26593586 Review URL: https://codereview.chromium.org/1601743007 Cr-Commit-Position: refs/heads/master@{#370768}
-
paulmeyer authored
This patch moves find-in-page code from RenderView to RenderFrame. This works towards the deprecation of RenderView, and is also the first step towards implementing multi-process find-in-page (for OOPIFs). Design doc for multi-process find-in-page: https://docs.google.com/a/google.com/document/d/12S_6X2MWWLoyJslajcajL2ELU7zhodPxMOxa8Bg4Wg0/edit?usp=sharing BUG=457440 TEST=existing tests (no functional difference) Review URL: https://codereview.chromium.org/1600953003 Cr-Commit-Position: refs/heads/master@{#370767}
-
dcheng authored
BUG=none Review URL: https://codereview.chromium.org/1611743002 Cr-Commit-Position: refs/heads/master@{#370766}
-
brettw authored
These just reference the bug on the build issue. BUG=535386 TBR=dpranke@chromium.org Review URL: https://codereview.chromium.org/1617153002 Cr-Commit-Position: refs/heads/master@{#370765}
-
vabr authored
BUG=None R=mathp@chromium.org Review URL: https://codereview.chromium.org/1612983004 Cr-Commit-Position: refs/heads/master@{#370764}
-
mfoltz authored
This adds a histogram for counting events that wake up component event pages. This will be especially helpful for optimizing the behavior of the Media Router which (I believe) is the only component event page for certain network events (chrome.dial, chrome.mdns, chrome.cast.*). Also adds a unit test case for EventRouter::ReportEvent. BUG=563883 Review URL: https://codereview.chromium.org/1606943005 Cr-Commit-Position: refs/heads/master@{#370763}
-
georgesak authored
Note that this is a very basic algorithm to get us jump started. Further refinements will be made to improve it. BUG=463606 Review URL: https://codereview.chromium.org/1603413003 Cr-Commit-Position: refs/heads/master@{#370762}
-
jbudorick authored
i.e., this does not include the cronet or webview bots. BUG=580129 Review URL: https://codereview.chromium.org/1615053002 Cr-Commit-Position: refs/heads/master@{#370761}
-
lazyboy authored
r368222 made chrome.tabs.query restrict extensions without effective tabs permission from looking at a tab's URL. This CL relaxes the restriction letting tabs with specific host(s) permission to look at tabs at that host(s). BUG=572545 Test=See bug for details: https://code.google.com/p/chromium/issues/detail?id=572545#c9 Review URL: https://codereview.chromium.org/1600553006 Cr-Commit-Position: refs/heads/master@{#370760}
-
maruel authored
https://chromium.googlesource.com/external/swarming.client.git/+log/9cdd76171e51..0b908f18767c $ git log 9cdd76171..0b908f187 --date=short --no-merges --format='%ad %ae %s' 2016-01-20 maruel Do not crash on isolate.py batcharchive when .isolated.gen.json is missing. 2016-01-20 maruel Consider ProtocolError a transient error when reading. 2016-01-19 maruel Enable back TEMP directory override on Windows. 2016-01-12 maruel swarming.py bot: handle incorrect dimensions. 2016-01-11 maruel Update httplib2, oauth2client, pyasn1, python-rsa and requests; add six. 2016-01-06 maruel Fix swarming.py reproduce to include extra_args for isolated task. 2015-12-18 maruel In case of timeout, ignore internal failure. 2015-12-17 maruel Remove Symantec certificates that are no longer relevant. 2015-12-15 maruel Immediately write a json response file on start. 2015-12-15 maruel Remove stale reference to old /content-gs/ isolate API. 2015-12-07 maruel Add new endpoint tasks/requests to retrieve requests instead of results. R=vadimsh@chromium.org BUG= Review URL: https://codereview.chromium.org/1618893002 Cr-Commit-Position: refs/heads/master@{#370759}
-
maclellant authored
OEM partners may wish to have more control over reported volume intervals, so expose API that allows shared library to either opt-in and set intervals or opt-out and use default values. BUG=internal b/24333496 TEST=none Review URL: https://codereview.chromium.org/1602323003 Cr-Commit-Position: refs/heads/master@{#370758}
-
amistry authored
This is safe because both success and fail paths post a quit-if-running task back to the UI thread. BUG=259861 Review URL: https://codereview.chromium.org/1619433002 Cr-Commit-Position: refs/heads/master@{#370757}
-
mmeade authored
BUG= Review URL: https://codereview.chromium.org/1585373003 Cr-Commit-Position: refs/heads/master@{#370756}
-
jri authored
Minor refactor of MaybeMigrateOrCloseSessions, in preparation for CL(s) implementing migration on QUIC timeouts. BUG=576998 Review URL: https://codereview.chromium.org/1614573002 Cr-Commit-Position: refs/heads/master@{#370755}
-
yoav authored
Move the dynamic addition of preload links test to use to onload event, as this is now supported, and would avoid using a flaky timeout. BUG=579854 Review URL: https://codereview.chromium.org/1612993002 Cr-Commit-Position: refs/heads/master@{#370754}
-
erg authored
BUG=579645 R=yzshen@chromium.org TBR=sky@chromium.org Review URL: https://codereview.chromium.org/1617893003 Cr-Commit-Position: refs/heads/master@{#370753}
-
mseaborn authored
Following earlier cleanups, TempFile is now just a wrapper around base::File anyway. BUG=302078 TEST=e.g. NaClBrowserTestPnacl.PPAPICore (tests PNaCl translation) Review URL: https://codereview.chromium.org/1615523003 Cr-Commit-Position: refs/heads/master@{#370752}
-
brettw authored
Review URL: https://codereview.chromium.org/1613283002 Cr-Commit-Position: refs/heads/master@{#370751}
-
dcheng authored
- Deduplicates copy and pasted test logic for scoped_ptr and std::unique_ptr. - Adds test coverage of std::unique_ptr with a custom deleter. BUG=561749 Review URL: https://codereview.chromium.org/1610053002 Cr-Commit-Position: refs/heads/master@{#370750}
-
stevenjb authored
This adds and fixes some types in display_options.js, in preparation for re-factoring it to support multiple displays. BUG=576375 Review URL: https://codereview.chromium.org/1612873002 Cr-Commit-Position: refs/heads/master@{#370749}
-
tommycli authored
Adds a browsertest for ChromeOS Change Picture Settings subpage. Modelled after the bluetooth_page_browsertest_chromeos. BUG=563721 Review URL: https://codereview.chromium.org/1585963004 Cr-Commit-Position: refs/heads/master@{#370748}
-
chrisha authored
This brings in recent SyzyASan RTL fixes. BUG= Review URL: https://codereview.chromium.org/1614993003 Cr-Commit-Position: refs/heads/master@{#370747}
-
dskiba authored
Fix return type to be void. Review URL: https://codereview.webrtc.org/1578463002 BUG=539781 Review URL: https://codereview.chromium.org/1607363003 Cr-Commit-Position: refs/heads/master@{#370746}
-
dyen authored
R=nednguyen@google.com BUG=563716 Review URL: https://codereview.chromium.org/1586143003 Cr-Commit-Position: refs/heads/master@{#370745}
-
brettw authored
All the tests are disabled on Android because this type of test is not supported. Doing this allws us to clean up some of the preprocessor mess in this file Review URL: https://codereview.chromium.org/1613523002 Cr-Commit-Position: refs/heads/master@{#370744}
-
dbeam authored
R=asanka@chromium.org BUG=578962 Review URL: https://codereview.chromium.org/1610483003 Cr-Commit-Position: refs/heads/master@{#370743}
-
skia-deps-roller authored
https://chromium.googlesource.com/skia.git/+log/1a7eb266644d..233bab918f1c $ git log 1a7eb2666..233bab918 --date=short --no-merges --format='%ad %ae %s' 2016-01-21 robertphillips Add Lua SkXfermode skp scraping support 2016-01-21 msarett Rename SkCodec_libpng to SkPngCodec 2016-01-21 bungeman Implement onMatchFamilyStyle for Mac. GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1612653002 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel TBR=benjaminwagner@google.com Review URL: https://codereview.chromium.org/1614933003 Cr-Commit-Position: refs/heads/master@{#370742}
-
sky authored
BUG=579645 TEST=none R=yzshen@chromium.org Review URL: https://codereview.chromium.org/1614553002 Cr-Commit-Position: refs/heads/master@{#370741}
-
newt authored
This adds a width restriction on infobars. If the webpage is wider than the infobar max width (600dp), the infobars will "float" in the middle bottom of the page with shadows on the left, top, and right edges of each infobar. BUG=396223 Review URL: https://codereview.chromium.org/1587403002 Cr-Commit-Position: refs/heads/master@{#370740}
-
jaydasika authored
Need to remove it as it uses layer tree hierarchy information. It is used for computing surface draw opacity which can be computed directly from effect tree. BUG=568799 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Review URL: https://codereview.chromium.org/1613583002 Cr-Commit-Position: refs/heads/master@{#370739}
-