- 10 Jun, 2015 40 commits
-
-
wuchengli authored
Another platform will have image processor. Change the device name of image processor to more generic. BUG=chrome-os-partner:38980 TEST=Test apprtc loopback on peach pit. Review URL: https://codereview.chromium.org/1156803004 Cr-Commit-Position: refs/heads/master@{#333674}
-
yawano authored
Revert of Gallery: capture escape key in full screen by adding a permission. (patchset #2 id:20001 of https://codereview.chromium.org/1149323006/) Reason for revert: All of Gallery Material Redesign will happen in M46. Original issue's description: > Gallery: capture escape key in full screen by adding a permission. > > BUG=497011 > TEST=manually tested; Maximize Gallery and press slideshow button. Confirm that it goes to slideshow mode. After it, press escape key and confirm that it goes back to the original mode. > > Committed: https://crrev.com/7d1560ccb3dfee3c9f1510b035f67261b0b88d8f > Cr-Commit-Position: refs/heads/master@{#333246} TBR=fukino@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=497011 Review URL: https://codereview.chromium.org/1174733005 Cr-Commit-Position: refs/heads/master@{#333673}
-
dalecurtis authored
The current approach doesn't account for expired frames when resuming after underflow, which means we may resume and then immediately fail again; these frames are also out of sync with the audio playing out. Fixing this requires several changes to the pipeline: - TimeSource::ConvertMediaTimestamps() will now always convert timestamps, even when time is stopped. When time is stopped the converted values are based on the last known media wall clock time. - TimeSource::ConvertMediaTimestamps() will now return the current media wall clock time when an empty timestamps vector is given; this value is used to figure out which video frames have been played out already. - Introduce AudioClock::CompensateForSuspendedWrites() to ensure the audio delay value is correctly used when return the current wall clock time. - Introduce |was_time_moving_| to VideoRendererAlgorithm to ensure the |last_deadline_max_| value, used by RemoveExpiredFrames, is only changed when time is ticking; otherwise the value given to RemoveExpiredFrames is overwritten by Render() calls and EffectiveFramesQueued() will vary. - Modifies VideoRendererImpl::FrameReady() to remove expired frames based on the last known media wall clock time during underflow states. Combined these changes lead to a noticeable improvement in audio/video sync during underflow as well as a greatly reduced number of underflow events. BUG=498525 TEST=lots of new tests. Review URL: https://codereview.chromium.org/1160853006 Cr-Commit-Position: refs/heads/master@{#333672}
-
horo authored
This cl implements ServiceWorkerHandler::ActivateTarget() to focus the tab which is controlled by ServiceWorker. Screenshot: https://code.google.com/p/chromium/issues/detail?id=466871#c65 1/5 chromium: This cl. 2/5 blink: https://codereview.chromium.org/1151993003/ 3/5 chromium: https://codereview.chromium.org/1149383004/ 4/5 blink: https://codereview.chromium.org/1164583002/ 5/5 chromium: https://codereview.chromium.org/1143363009/ BUG=466871 Review URL: https://codereview.chromium.org/1160133002 Cr-Commit-Position: refs/heads/master@{#333671}
-
wychen authored
This measures time spent in ExecuteJavaScript() in DomDistiller. It includes JavaScript code transmission through IPC, parsing, compilation, execution, and returning the JSON back through IPC. We already have DomDistiller.Time.DistillationTotal, but it is measured within JavaScript. In DomDistiller.Time.*, DistillationTotal < RunJavaScript < DistillPage. BUG=497430 Review URL: https://codereview.chromium.org/1143173009 Cr-Commit-Position: refs/heads/master@{#333670}
-
thakis authored
I had hoped to bump the deployment target to 10.7 instead, but the nacl bots still build on 10.6 :-( Also, pass commands as a single string to subprocess when shell=True (else, 2nd cmd entry and onward are treated as shell parameters, not as part of the command). BUG=494442 Review URL: https://codereview.chromium.org/1169353002 Cr-Commit-Position: refs/heads/master@{#333669}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/b23e6aa..5195805 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel TBR=djsollen@google.com Review URL: https://codereview.chromium.org/1175823003 Cr-Commit-Position: refs/heads/master@{#333668}
-
brianderson authored
This is for debugging purposes only and will be reverted soon. BUG=495650 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Review URL: https://codereview.chromium.org/1175703004 Cr-Commit-Position: refs/heads/master@{#333667}
-
chrome-tpm authored
Cr-Commit-Position: refs/heads/master@{#333666}
-
bhanudev authored
Added 'blob' scheme in Navigation.MainFrameScheme and Navigation.MainFrameSchemeDifferentPage histograms. Added it in the end, before the scheme_max so that scheme_max contains the number of schemes. BUG=492773 Review URL: https://codereview.chromium.org/1167403002 Cr-Commit-Position: refs/heads/master@{#333665}
-
nednguyen authored
Move perf_tests_helper.py to telemetry/util/perf_tests_helper.py BUG=497905 Review URL: https://codereview.chromium.org/1171803003 Cr-Commit-Position: refs/heads/master@{#333664}
-
tedchoc authored
After clicking the "Allow" button in the infobars, Chrome will request the permission if required from Android. BUG=496447 Review URL: https://codereview.chromium.org/1164973003 Cr-Commit-Position: refs/heads/master@{#333663}
-
aiolos authored
BUG=498040 Review URL: https://codereview.chromium.org/1174743002 Cr-Commit-Position: refs/heads/master@{#333662}
-
kbr authored
BUG=498149 Review URL: https://codereview.chromium.org/1176723002 Cr-Commit-Position: refs/heads/master@{#333661}
-
sky authored
We're left with the following: . Embed(ViewManagerClientPtr client) . EmbedAllowingReembed(mojo::URLRequestPtr request): this variant walks the frame tree for the first ancestor marked as an embed root and asks it for the ViewManagerclient to embed. BUG=497855 TEST=covered by tests R=ben@chromium.org Review URL: https://codereview.chromium.org/1166123005 Cr-Commit-Position: refs/heads/master@{#333660}
-
yawano authored
Revert of Gallery: use shadow dom with Polymer. (patchset #1 id:1 of https://codereview.chromium.org/1168333002/) Reason for revert: All of Gallery Material Redesign will happen in M46. Original issue's description: > Gallery: use shadow dom with Polymer. > > BUG=488227 > TEST=none > > Committed: https://crrev.com/f17dc18bc3dd133d2be1c92d2f4e3c0b05d4d9b1 > Cr-Commit-Position: refs/heads/master@{#333449} TBR=fukino@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=488227 Review URL: https://codereview.chromium.org/1172533003 Cr-Commit-Position: refs/heads/master@{#333659}
-
bruthig authored
TEST=TaskSwitchMetricsRecorderTest.VerifyTaskSwitchesRecordInAllTaskSwitchHistogram BUG=487745 Review URL: https://codereview.chromium.org/1148723006 Cr-Commit-Position: refs/heads/master@{#333658}
-
scottmg authored
Mostly turns on char16_t and char32_t to not error out immediately. R=thakis@chromium.org BUG=82385,440500,498544 Review URL: https://codereview.chromium.org/1172903002 Cr-Commit-Position: refs/heads/master@{#333657}
-
weiliangc authored
Turn on Impl Side Painting on Aura browser compositor by default and add a disable compositor switch. (Last attempt to re-land is at https://codereview.chromium.org/1160093005/, the try bot failure seem to be fixed with https://codereview.chromium.org/1166983007/ which is committed) R=danakj BUG=314185 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Review URL: https://codereview.chromium.org/962833003 Cr-Commit-Position: refs/heads/master@{#333656}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/4b91fed..9237715 TBR=enne@chromium.org,yurys@chromium.org Review URL: https://codereview.chromium.org/1166383003 Cr-Commit-Position: refs/heads/master@{#333655}
-
vmpstr authored
This patch fixes more size_t to int truncations that I missed on the initial runs. R=danakj BUG=167187 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Review URL: https://codereview.chromium.org/1170403002 Cr-Commit-Position: refs/heads/master@{#333654}
-
danakj authored
This scale is currently 0, but if a PaintedScrollbarLayerImpl ends up in the RenderSurfaceLayerList, we'll try to get the layer's rect in target space. Since the scale is 0 we end up dividing by 0 and get a NaN which is bad times. If we init this to 1 things work until the PaintedScrollbarLayer has a chance to Update(). R=enne BUG=497947 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Review URL: https://codereview.chromium.org/1172873002 Cr-Commit-Position: refs/heads/master@{#333653}
-
dnj authored
BUG=chromium:489795 TEST=None R=sergiyb@chromium.org Review URL: https://codereview.chromium.org/1168813003 Cr-Commit-Position: refs/heads/master@{#333652}
-
rtenneti authored
the same data more than once. BUG=451256 R=rch@chromium.org Review URL: https://codereview.chromium.org/1160823007 Cr-Commit-Position: refs/heads/master@{#333651}
-
servolk authored
DecryptingDemuxerStream should report proper video_rotation of the underlying DemuxerStream. BUG=none Review URL: https://codereview.chromium.org/1175563005 Cr-Commit-Position: refs/heads/master@{#333650}
-
jan authored
When creating a bookmark file by draging and droping the URL to the desktop chromium uses the page title for the filename. In cases where the title starts with a dot the webloc file will also start with a dot. Since files starting with a dot are considered hidden and not shown by e.g. the Finder users won't see the expected resulting file. To circumvent this a dot as the first character is handled like any other character not allowed in a filename and gets replaced by a hyphen. BUG=138917 TEST=Paste "data:text/html,<title>. . . hey!</title>" into the Omnibox and drag and drop the URL to the desktop. Review URL: https://codereview.chromium.org/1118813005 Cr-Commit-Position: refs/heads/master@{#333649}
-
jackhou authored
This was made stable in https://codereview.chromium.org/866893003 but that CL missed this is-dev-channel check. BUG=495039,384644 Review URL: https://codereview.chromium.org/1170843005 Cr-Commit-Position: refs/heads/master@{#333648}
-
nednguyen authored
BUG=439512, 472215 TEST=./tools/perf/run_benchmark --browser=system smoothness.maps Review URL: https://codereview.chromium.org/1171113002 Cr-Commit-Position: refs/heads/master@{#333647}
-
anandc authored
BUG=480025 Review URL: https://codereview.chromium.org/1172183003 Cr-Commit-Position: refs/heads/master@{#333646}
-
kelvinp authored
This CL defines the LicenseManager interface and implements a dummy GaiaLicenseManager that returns the user's Gaia token. BUG=b/19799333 Review URL: https://codereview.chromium.org/1163023002 Cr-Commit-Position: refs/heads/master@{#333645}
-
zea authored
Encryption errors can arise due to OS issues in some cases or simply directory corruption. Rather than crashing trigger an unrecoverable error. BUG=123223 Review URL: https://codereview.chromium.org/1161463005 Cr-Commit-Position: refs/heads/master@{#333644}
-
brettw authored
This was only used in one place and it was unnecessary. Review URL: https://codereview.chromium.org/1172163002 Cr-Commit-Position: refs/heads/master@{#333643}
-
dyen authored
We have traditionally tested all of the GPUTiming functionalities within GPUTracer since GPUTracer utilizes GPUTiming extensively. With the introduction of gl_unittests as well as GPUTiming getting more complicated it makes sense to have GPUTiming specific unit tests. This CL is the first step in moving towards that direction, simply moving all of the GPUTiming GL queries into a fake query class which can handle the query expectations. R=sievers@chromium.org, vmiura@chromium.org BUG=453965, 345227 Review URL: https://codereview.chromium.org/1162203006 Cr-Commit-Position: refs/heads/master@{#333642}
-
reveman authored
1/4 MB per copy operation on Mali pre-Lollipop. BUG=460288,498443 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Review URL: https://codereview.chromium.org/1159833002 Cr-Commit-Position: refs/heads/master@{#333641}
-
jrw authored
BUG=471928 Review URL: https://codereview.chromium.org/1123163002 Cr-Commit-Position: refs/heads/master@{#333640}
-
benwells authored
Fix a bug where exiting the SSL certificate export from the page info bubble (connection \ certificate information \ details \ save to file) could cause chrome to hang on Windows 8.1. BUG=344012 Review URL: https://codereview.chromium.org/1158043004 Cr-Commit-Position: refs/heads/master@{#333639}
-
miletus authored
DamageTrackerTest does a lot of impl side operations that could not happen in practice, e.g. LayerImpl::SetPosition(), LayerImpl::Add/RemoveChild(). These operations won't trigger property trees rebuild/update so the verification on draw_transform would fail. The simple fix in this case seems to be forcing a property trees rebuild. CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Review URL: https://codereview.chromium.org/1170383003 Cr-Commit-Position: refs/heads/master@{#333638}
-
tapted authored
Linking against the 10.6 SDK tickles an AppKit bug that causes a parent NSWindow to disappear from screen when it has a child window that closes. NativeWidgetMac tries to ensure windows are only closed when they have no parent window. However, for child Widgets with non-Widget parents, if the "anchor" NSView used to create the dialog was removed from its own view hierarchy while the child dialog is still alive, this step was being skipped. Specifically, this happens for tab-modal dialogs that have a fade out animation that can outlast the NSView it was initially anchored off. Fix by retaining the NSWindow parent when the parent-child relationship is initially created. BUG=485854 Review URL: https://codereview.chromium.org/1169063002 Cr-Commit-Position: refs/heads/master@{#333637}
-
jackhou authored
The MacViews native app window implementation was only available behind a gyp flag (mac_views_browser). This includes it into a regular Mac build and allows it to be enabled from chrome:flags. BUG=459877 Review URL: https://codereview.chromium.org/1167883002 Cr-Commit-Position: refs/heads/master@{#333636}
-
jeremyim authored
This field trial will allow the config service client to be enabled as well as providing a means to set the config service URL. Values on the command line will override values coming from the field trials. BUG=466753 Review URL: https://codereview.chromium.org/1162903008 Cr-Commit-Position: refs/heads/master@{#333635}
-