- 08 Apr, 2015 32 commits
-
-
aiolos authored
BUG=471786 Review URL: https://codereview.chromium.org/1067193002 Cr-Commit-Position: refs/heads/master@{#324188}
-
deepak.m1 authored
Earlier we are checking whether a extension with url that have mime type should be intercepted as stream by checking plugin availablity. Now we are passing plugin path and then checking whether their is MimehandlerView Plugin available with that path and then we are allowing intercepted as stream. So now interception is not depends upon mimetype. BUG=443466 Review URL: https://codereview.chromium.org/953793003 Cr-Commit-Position: refs/heads/master@{#324187}
-
tfarina authored
It seems better to use a specific MD5 API for this kind of thing. The result should be the same with the difference that the alpha chars used in MD5DigestToBase16() are lowercase. BUG=None TEST=components_browsertests --gtest_filter=PrintWebViewHelperTest.PrintLayoutTest R=vitalybuka@chromium.org Review URL: https://codereview.chromium.org/1068593002 Cr-Commit-Position: refs/heads/master@{#324186}
-
pkasting authored
BUG=437890,436671,455423,424386,436634,422516 TEST=none TBR=jochen,cbentzel,jyasskin Review URL: https://codereview.chromium.org/1062413002 Cr-Commit-Position: refs/heads/master@{#324185}
-
bnc authored
unnecessarily frequent WINDOW_UPDATEs to be sent. * Update SpdyNetworkTransactionTest.WindowUpdateSent to test for this fix and verify locally that it fails without the fix. * Add spdy_session_max_recv_window_size member and plumb it through HttpNetworkSession::Params, SpdySessionPool, and SpdySession. * Rename stream_initial_recv_window_size to stream_max_recv_window_size members and corresponding methods. * Set default values in HttpNetworkSession instead of SpdySession, have two separate constants instead of one. * Set this member in SpdySessionDependencies to specification-prescribed default initial window size for tests. * Use this default to simplify SpdyNetworkTransactionTest.SettingsPlayback and SpdySessionTest.SendInitialDataOnNewSession tests. * Add SpdySessionPoolPeer methods to modify session and stream level maximum window size. BUG=474208 Review URL: https://codereview.chromium.org/1061853002 Cr-Commit-Position: refs/heads/master@{#324184}
-
benwells authored
The Windows system automatically adds a tooltip to these buttons as the button returns HTCLOSE when nc hit tested. If we add the aura tooltip as well there are two tooltips shown. BUG=471981 Review URL: https://codereview.chromium.org/1044043004 Cr-Commit-Position: refs/heads/master@{#324183}
-
abhijeet.k authored
Review URL: https://codereview.chromium.org/1053563003 Cr-Commit-Position: refs/heads/master@{#324182}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/68b67cd..e0eac24 TBR=falken@chromium.org,cbiesinger@chromium.org Review URL: https://codereview.chromium.org/1065093004 Cr-Commit-Position: refs/heads/master@{#324181}
-
horo authored
This cl introduces three UMAs. - ServiceWorker.ScriptCount - ServiceWorker.ScriptTotalSize - ServiceWorker.ScriptCachedMetadataTotalSize 1/2 blink: https://codereview.chromium.org/1059193002/ 2/2 chromium: This cl. BUG=408451 Review URL: https://codereview.chromium.org/1055423002 Cr-Commit-Position: refs/heads/master@{#324180}
-
khorimoto authored
This fixes an issue where Chrome on iOS failed to translate interstitial pages due to use of this selector (on iOS, Chrome uses UIWebView which does not have native support for shadow DOM). Note that Polymer-based pages will still work in iOS WebUI pages because /deep/ will be polyfilled. BUG=474360 Review URL: https://codereview.chromium.org/1062813007 Cr-Commit-Position: refs/heads/master@{#324179}
-
thakis authored
Revert of Add the ability to build Chrome tools to the Win Clang build script. (patchset #3 id:40001 of https://codereview.chromium.org/1068603002/) Reason for revert: Still breaks clang/win bots: http://build.chromium.org/p/chromium.fyi/builders/CrWinClang/builds/279 Original issue's description: > Add the ability to build Chrome tools to the Win Clang build script. > > BUG=424436,467287 > > Committed: https://crrev.com/475949d9430b6a759ce759f2133dd3a1577d0d0b > Cr-Commit-Position: refs/heads/master@{#324089} > > Committed: https://crrev.com/8caa594c291b6dd3e35d60a886ef33b36ae78e97 > Cr-Commit-Position: refs/heads/master@{#324164} TBR=hans@chromium.org,dcheng@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=424436,467287 Review URL: https://codereview.chromium.org/1070523002 Cr-Commit-Position: refs/heads/master@{#324178}
-
mfoltz authored
BUG=461815 Review URL: https://codereview.chromium.org/1069063002 Cr-Commit-Position: refs/heads/master@{#324177}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/6c27535..c654e90 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel TBR=msarett@google.com Review URL: https://codereview.chromium.org/1070463002 Cr-Commit-Position: refs/heads/master@{#324176}
-
wittman authored
Collects stack samples at 10 Hz for 30 seconds at startup. Uploading of samples to UMA is controlled by a Finch experiment. This change moves to a callback-based mechanism for communicating completed profiles to the metrics provider to avoid profiles lingering in memory when reporting is disabled. BUG=464929 Review URL: https://codereview.chromium.org/1029653002 Cr-Commit-Position: refs/heads/master@{#324175}
-
justincohen authored
Clients that already set the async parameter (in this case, with 'cta:1'), will end up with query strings with two differeny async parameters, instead of a comma delimited async param. E.g. converts ?async=cta:1&async=es_dfp:123 -> ?async=cta:1,es_dfp:123 BUG=414528 Review URL: https://codereview.chromium.org/1066923002 Cr-Commit-Position: refs/heads/master@{#324174}
-
danakj authored
Don't use the canvas() from the PaintContext so that we can have the PaintContext be backed by a DisplayItemList instead in the future. Access to the Canvas should be done through a PaintRecorder. For compositing effects (opacity) we use a CompositingRecorder to provide a scoped opacity change. R=pkasting BUG=466426 Review URL: https://codereview.chromium.org/1062293003 Cr-Commit-Position: refs/heads/master@{#324173}
-
dalecurtis authored
The upcoming VideoRenderer needs a way to know when time starts and stops moving; this extends the RendererImpl to let the VideoRenderer know about time changes. I considered introducing a TimeSourceDependent observer-like interface for TimeSources, but it ended up being way more complicated. I also considered a proxy TimeSource, but again it was way more complicated. The approach here is quite simple and small in complexity. BUG=439548 TEST=new unittest. Review URL: https://codereview.chromium.org/1068593003 Cr-Commit-Position: refs/heads/master@{#324172}
-
tfarina authored
With this tricky we don't need this strange 'j' variable laying around outside the loop, even better, since that variable is not even used outside of the for loop. The iteration using this tricky goes like the following: The old tricky using just 'i': For i = 0: 0 * 2 = 0 0 * 2 + 1 = 1 For i = 1: 1 * 2 = 2 1 * 2 + 1 = 3 For i = 2: 2 * 2 = 4 2 * 2 + 1 = 5 The new tricky using 'j': For i = 0: j = 0 0 = 0 0 + 1 = 1 For i = 1: j = 2 2 = 2 2 + 1 = 3 For i = 2: j = 4 4 = 4 4 + 1 = 5 So the new code does the same thing as the old but with the advantage of not having to use a temporary variable outside the loop. And the tricky with 'j' has also the benefit of avoid a multiplication and the rules of operator precedence. BUG=None TEST=base_unittests --gtest_filter=MD5* R=thestig@chromium.org Review URL: https://codereview.chromium.org/1065733005 Cr-Commit-Position: refs/heads/master@{#324171}
-
jrummell authored
BUG=474674 Review URL: https://codereview.chromium.org/1063453004 Cr-Commit-Position: refs/heads/master@{#324170}
-
mtomasz authored
For auto-launched kiosk apps permissions are granted automatically, without a user consent. In such case a notification will be shown though. TEST=unit_tests: *FileSystemApiConsentProviderTest* BUG=440674 Review URL: https://codereview.chromium.org/1032313002 Cr-Commit-Position: refs/heads/master@{#324169}
-
dhaddock authored
This adds a test to check that clicking the columns headers in Files resorts the columns in the correct order. It checks for ascending and descending. TEST=browser_tests -gtest_filter="*SortColumns/FileManagerBrowserTest*" BUG=None Review URL: https://codereview.chromium.org/1063453003 Cr-Commit-Position: refs/heads/master@{#324168}
-
kelvinp authored
This CL moves protocolExtensionManager from SessionConnector into its own class. The ProtcolExtensionManager will be exposed via the ClientPlugin. The higher level goal is to remove functionality from the SessionConnecctor so that it can be removed altogether in a future CL. BUG=474766 Review URL: https://codereview.chromium.org/1067133002 Cr-Commit-Position: refs/heads/master@{#324167}
-
mlamouri authored
Has to land after Blink CL: https://codereview.chromium.org/1057193003/ BUG=474692 Review URL: https://codereview.chromium.org/1059563005 Cr-Commit-Position: refs/heads/master@{#324166}
-
jrw authored
BUG=471928 Review URL: https://codereview.chromium.org/1060793003 Cr-Commit-Position: refs/heads/master@{#324165}
-
dcheng authored
BUG=424436,467287 Committed: https://crrev.com/475949d9430b6a759ce759f2133dd3a1577d0d0b Cr-Commit-Position: refs/heads/master@{#324089} Review URL: https://codereview.chromium.org/1068603002 Cr-Commit-Position: refs/heads/master@{#324164}
-
orenb authored
Also, I fixed two issues in a11y page: 1. settings. -> settings.settings. (b/c the names were already prefixed with "settings.") 2. Correctly concat the list of prefs to request via chrome.send() (this will go away later anyway when we switch to settingsPrivate API.) BUG=464898 Review URL: https://codereview.chromium.org/990473002 Cr-Commit-Position: refs/heads/master@{#324163}
-
jbauman authored
The OutputSurface used with a Display should never call these. Review URL: https://codereview.chromium.org/1009013002 Cr-Commit-Position: refs/heads/master@{#324162}
-
vmpstr authored
This patch ensures that we don't do extra hidden iterations in the loop over tiles (erase is linear). R=danakj, enne Review URL: https://codereview.chromium.org/1069493003 Cr-Commit-Position: refs/heads/master@{#324161}
-
creis authored
This ensures that subframe processes aren't left around if a parent page removes an out-of-process iframes. TBR=jam@chromium.org BUG=471346, 474772 TEST=See bug for repro steps. Credit to nick@ for TaskManagerOOPIFBrowserTest.LeavePageWithCrossSiteIframes Review URL: https://codereview.chromium.org/1039403002 Cr-Commit-Position: refs/heads/master@{#324160}
-
hubbe authored
again Review URL: https://codereview.chromium.org/1065113003 Cr-Commit-Position: refs/heads/master@{#324159}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/f36d5e0..68b67cd TBR=falken@chromium.org,cbiesinger@chromium.org Review URL: https://codereview.chromium.org/1067093003 Cr-Commit-Position: refs/heads/master@{#324158}
-
brucedawson authored
The function snprintf is not available in Visual Studio prior to VS 2015. In some places this omission is dealt with with a #define to map snprintf to _snprintf. This was never a good idea (_snprintf doesn't guarantee null-termination) and with VS 2015 it is not even legal. This change conditionally disables one instance of this remapping. The build errors that occur without this change are: stdio.h(1926): warning C4005: 'snprintf': macro redefinition stdio.h(1926): note: command-line arguments: see previous definition of 'snprintf' stdio.h(1929): fatal error C1189: #error: Macro definition of snprintf conflicts with Standard Library function declaration R=scottmg@chromium.org BUG=440500 Review URL: https://codereview.chromium.org/1069433002 Cr-Commit-Position: refs/heads/master@{#324157}
-
- 07 Apr, 2015 8 commits
-
-
kelvinp authored
This CL abstracts Me2Me and It2Me under one common interface remoting.Activity. Instead of littering desktop_remoting.js with if statements based on the mode, all Me2Me specific logic can be moved into remoting.Me2MeActivity and likewise for It2Me. BUG=466406 NOTRY=true TEST=All integration tests passed on chromoting bots. https://chromium-swarm.appspot.com/user/task/26aed85d041d9d10 Review URL: https://codereview.chromium.org/1054273002 Cr-Commit-Position: refs/heads/master@{#324156}
-
oshima authored
BUG=343237 TEST=WindowSelectorTest.BasicWithDocked, plus manual Review URL: https://codereview.chromium.org/1059903002 Cr-Commit-Position: refs/heads/master@{#324155}
-
georgesak authored
TBR=sky@chromium.org BUG=465815 Review URL: https://codereview.chromium.org/1062293004 Cr-Commit-Position: refs/heads/master@{#324154}
-
danakj authored
Don't use the canvas() from the PaintContext so that we can have the PaintContext be backed by a DisplayItemList instead in the future. Access to the Canvas should be done through a PaintRecorder. R=piman@chromium.org, sadrul BUG=466426 Review URL: https://codereview.chromium.org/1066183002 Cr-Commit-Position: refs/heads/master@{#324153}
-
aelias authored
It seems all of the known bugs with Mali-400 are related to framebuffer discarding. Blacklist framebuffer discarding universally on Mali-400 and reenable ganesh and canvas where it was still blacklisted on Mali-400. There was a preexisting workaround applied to all ARM < 4.4 which was originally written in the context of Mali-T604; this explains why the bugs only reproed on some Mali-400 devices. Add a new one for all 4xx. Also, a recently added Nexus 6 workaround did essentially the same thing, but at the level of making the discard do nothing instead of not advertising the extension. In OpenGL ES 3, this is a core method so failing to advertise won't be sufficient, so merge the two workarounds and remove the "_ext_" from the name. BUG=449488,451230 Review URL: https://codereview.chromium.org/1068573004 Cr-Commit-Position: refs/heads/master@{#324152}
-
chrishtr authored
BUG=474749 Review URL: https://codereview.chromium.org/1069503002 Cr-Commit-Position: refs/heads/master@{#324151}
-
bajones authored
BUG=445542 Review URL: https://codereview.chromium.org/1050043003 Cr-Commit-Position: refs/heads/master@{#324150}
-
apacible authored
This custom polymer element is used as a button to toggle the cast-mode-player (hide/show). It is styled after the current cast extension's drop down button. BUG=464222 Review URL: https://codereview.chromium.org/1032533002 Cr-Commit-Position: refs/heads/master@{#324149}
-