- 05 Feb, 2015 40 commits
-
-
sebmarchand authored
Version 0.8.5.0 [cec4a29a57] Add support for rate targeted heaps [562794745b] Add support for more AVX2 instructions. BUG=454269 Review URL: https://codereview.chromium.org/880573006 Cr-Commit-Position: refs/heads/master@{#314916}
-
dgn authored
Review URL: https://codereview.chromium.org/905573003 Cr-Commit-Position: refs/heads/master@{#314915}
-
aurimas authored
BUG=266140 Review URL: https://codereview.chromium.org/900103002 Cr-Commit-Position: refs/heads/master@{#314914}
-
vmpstr authored
This patch splits the work we do in ReleaseResources into two parts: ReleaseResources and RecreateResources. If any part of invalidating or creating new resources requires access to new structures (such as a new tile manager and new output surface), this is the way to get this information. That is, ReleaseResources happens while old objects are alive and accessible. RecreateResources happens when the new objects are alive and accessible. R=danakj, enne Review URL: https://codereview.chromium.org/899313003 Cr-Commit-Position: refs/heads/master@{#314913}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/5e1378d..f71b4c1 CQ_EXTRA_TRYBOTS=tryserver.blink:linux_blink_rel,linux_blink_dbg TBR=stephana@google.com Review URL: https://codereview.chromium.org/902493008 Cr-Commit-Position: refs/heads/master@{#314912}
-
hcarmona authored
Calling preventDefault in the click event prevents buttons from handling the event. BUG=455617 Review URL: https://codereview.chromium.org/879243007 Cr-Commit-Position: refs/heads/master@{#314911}
-
dalecurtis authored
This prevents transient audio creation errors from cumulatively breaking audio output by blackholing everything to a fake audio stream after fallback attempts are exhausted. BUG=453560 TEST=new unittest, manual testing. Review URL: https://codereview.chromium.org/899923003 Cr-Commit-Position: refs/heads/master@{#314910}
-
thestig authored
Review URL: https://codereview.chromium.org/896053002 Cr-Commit-Position: refs/heads/master@{#314909}
-
palmer authored
This is preparatory work for bug 444244. BUG=444244 TBR=sky Review URL: https://codereview.chromium.org/882273003 Cr-Commit-Position: refs/heads/master@{#314908}
-
edwardjung authored
+ On small screens the navigation buttons are anchored to the bottom of the screen. + Tweaks to the text colour + Change button styling of safe browsing page BUG=422882 Review URL: https://codereview.chromium.org/885283005 Cr-Commit-Position: refs/heads/master@{#314907}
-
spang authored
The library uses functions from "math.h". This fixes the embedded build with -Wl,-z,defs. BUG=445627 TEST=linux_ecs_ozone tryjob TBR=cpu Review URL: https://codereview.chromium.org/901273002 Cr-Commit-Position: refs/heads/master@{#314906}
-
xiyuan authored
- Pass gaia auth init params via postMessage instead of URL params; - Validate message origins on both ends to ensure gaia auth only takes params from intended hosting pages and hosting pages only send params to gaia_auth; - Add string data storage to GaiaAuthExtensionLoader; - Use the string data storage to pass frameURL for switchToFullTab; - Update CSP in manifests to be more restrictive; - Clean up unused code in util.js; BUG=453994 Review URL: https://codereview.chromium.org/902493003 Cr-Commit-Position: refs/heads/master@{#314905}
-
wfh authored
BUG=412078 Review URL: https://codereview.chromium.org/896523002 Cr-Commit-Position: refs/heads/master@{#314904}
-
chrome://settingskelvinp authored
Revert of Update sync promo string in chrome://settings (patchset #1 id:100001 of https://codereview.chromium.org/904513002) Reason for revert: 165 Browser test crashing on Linux after the patch Sample failure: http://build.chromium.org/p/chromium.linux/builders/Linux%20Tests%20%28dbg%29%281%29/builds/38668/steps/browser_tests/logs/OptionsWebUIExtendedTest.ShowPageWithHistory Original issue's description: > Update sync promo string in chrome://settings > > BUG=455273 > Committed: https://crrev.com/fdef2865f067f30e99f1f11b33d8811d98bf1e54 > Cr-Commit-Position: refs/heads/master@{#314875} TBR=noms@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true Review URL: https://codereview.chromium.org/884743004 Cr-Commit-Position: refs/heads/master@{#314903}
-
simonhatch authored
Should be reverted once we have one from crashing startup.warm.blank_page perf test. BUG=433966 Review URL: https://codereview.chromium.org/899293003 Cr-Commit-Position: refs/heads/master@{#314902}
-
rch authored
Review URL: https://codereview.chromium.org/904723002 Cr-Commit-Position: refs/heads/master@{#314901}
-
rfevang authored
The server will now always do processing for nodes that don't have stars.id set, so no need to flip this flag any more. BUG= Review URL: https://codereview.chromium.org/888983002 Cr-Commit-Position: refs/heads/master@{#314900}
-
waltercacau authored
BUG=454140 Review URL: https://codereview.chromium.org/884843002 Cr-Commit-Position: refs/heads/master@{#314899}
-
sbc authored
Previously we were re-using 'gypbuild' for both 64 and 32. This change increases the complexity of the build but is more correct and robust and allows us to avoid cleaning the gyp output folders between builds. Review URL: https://codereview.chromium.org/898613002 Cr-Commit-Position: refs/heads/master@{#314898}
-
zmo authored
1) glGetUniformBlocksCHROMIUM This is Chromium GPU command buffer internal command. The purpose is to fetch UniformBlock related information in a linked program from service side in one command instead of multiple ones. 2) glGetUniformBlockIndex 3) glGetActiveUniformBlockName Get value from client side cache (retrieved by GetUniformBlockCHROMIUM); if that fails, send the command to service side. What's missing: glGetActiveUniformBlockiv. It requires some extra tuning, so leave that for a separate CL. BUG=453127,429053 TEST=gpu_unittests R=piman@chromium.org Review URL: https://codereview.chromium.org/895933004 Cr-Commit-Position: refs/heads/master@{#314897}
-
andresantoso authored
A more efficient way to draw a simple oval with alpha. It saves memory too since the view's layer no longer needs a backing buffer. Also simplified fade out animation code when dismissing. Review URL: https://codereview.chromium.org/894423003 Cr-Commit-Position: refs/heads/master@{#314896}
-
jonross authored
Add new flag to disable screen orientation locking. Update ScreenOrientationController to be enabled by default, and to check flag state for disabling. TEST=Set flag to check feature was disabled. BUG=396760 Review URL: https://codereview.chromium.org/901963002 Cr-Commit-Position: refs/heads/master@{#314895}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/abac64f..d953d07 TBR=dcheng@chromium.org,apavlov@chromium.org Review URL: https://codereview.chromium.org/902793006 Cr-Commit-Position: refs/heads/master@{#314894}
-
bbudge authored
Also changes copyright notices to the new style. BUG=455409 Review URL: https://codereview.chromium.org/885803003 Cr-Commit-Position: refs/heads/master@{#314893}
-
earthdok authored
Also, try enabling swarming for base_unittests on CrOS MSan. BUG=454828 TBR=phajdan.jr@chromium.org Review URL: https://codereview.chromium.org/899283003 Cr-Commit-Position: refs/heads/master@{#314892}
-
robertocn authored
BUG=455467 Review URL: https://codereview.chromium.org/872033003 Cr-Commit-Position: refs/heads/master@{#314891}
-
bnc authored
This CL breaks out into its own function the parsing of a DictionaryValue to AlternateProtocolInfo. This is only called once now, but as soon as we start storing multiple entries per server, we'll need to call it multiple times. See https://codereview.chromium.org/665083009/#ps460001. BUG=392575 Review URL: https://codereview.chromium.org/897313002 Cr-Commit-Position: refs/heads/master@{#314890}
-
noms authored
The change in the chrome_autofill_client.cc is needed to enable the autofill popup on Mac. BUG=447938 TEST=Start Chrome. Navigate to chrome://chrome-signin. Enter a correct username with an incorrect password. After the password error appears, you should be able to autofill that username. Review URL: https://codereview.chromium.org/866523002 Cr-Commit-Position: refs/heads/master@{#314889}
-
dcaiafa authored
BUG= Review URL: https://codereview.chromium.org/878413007 Cr-Commit-Position: refs/heads/master@{#314888}
-
dbeam authored
R=kalman@chromium.org BUG=none (yet) Review URL: https://codereview.chromium.org/899163007 Cr-Commit-Position: refs/heads/master@{#314887}
-
jrummell authored
BUG=385874 TEST=existing EME tests pass Review URL: https://codereview.chromium.org/897133002 Cr-Commit-Position: refs/heads/master@{#314886}
-
Peter Kasting authored
Mechanical change that adds instrumentation required to locate the source of jankiness (i.e. a long-running fragment of code executed as a part of the task that causes jank) in the code. See the bug for details on what kind of jank we are after. A number of similar CLs were landed, and none of them caused issues. The code of the instrumentation is highly optimized and is not expected to affect performance. The code simply creates a diagnostic task which is identical to ones created by PostTask or IPC message handlers. This also updates the existing instrumentation for bug 418183 to include the bug number everywhere. BUG=418183,455423,455434,455469 TEST=none R=vadimt@chromium.org TBR=jochen, mmenke, rockot, thestig Review URL: https://codereview.chromium.org/901773002 Cr-Commit-Position: refs/heads/master@{#314885}
-
kelvinp authored
Revert of Suppress accessibility events when user is navigating away. (patchset #6 id:100001 of https://codereview.chromium.org/830053004/) Reason for revert: NavigationAccessibilityTest.TestNavigateToNewUrl is failing on Win7 Tests (dbg)(1). Sample failure: http://build.chromium.org/p/chromium.win/builders/Win7%20Tests%20%28dbg%29%281%29/builds/35087 Original issue's description: > Suppress accessibility events when user is navigating away. > > When the user navigates to a new page, stop sending accessibility > events on the old page. > > BUG=421116,450409 > > Committed: https://crrev.com/6ce40a1e561892849c1f6ac070dda140f6cc0115 > Cr-Commit-Position: refs/heads/master@{#314812} TBR=nasko@chromium.org,dmazzoni@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=421116,450409 Review URL: https://codereview.chromium.org/892513004 Cr-Commit-Position: refs/heads/master@{#314884}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/797f58a..5e1378d CQ_EXTRA_TRYBOTS=tryserver.blink:linux_blink_rel,linux_blink_dbg TBR=stephana@google.com Review URL: https://codereview.chromium.org/899333002 Cr-Commit-Position: refs/heads/master@{#314883}
-
xunjieli authored
This CL is an follow-up CL to crrev.com/861193007. This CL makes sure state transitions and comments match the latest trace. BUG=452657 Review URL: https://codereview.chromium.org/891013002 Cr-Commit-Position: refs/heads/master@{#314882}
-
mbarbella authored
A compromised renderer can pass an arbitrary |provider_id|, so we should ensure that |provider_host| is not NULL and remove the DCHECK. See https://cluster-fuzz.appspot.com/testcase?key=4713217552023552 R=falken@chromium.org,nhiroki@chromium.org Review URL: https://codereview.chromium.org/901243002 Cr-Commit-Position: refs/heads/master@{#314881}
-
dnicoara authored
The expectation is that GLSurface resize operations succeed, so pretend that surfaceless resizes succeed as well, otherwise the state in SurfacelessEGL will not be updated correctly. BUG=none Review URL: https://codereview.chromium.org/884183007 Cr-Commit-Position: refs/heads/master@{#314880}
-
tbansal authored
QUIC Proxy servers are valid HTTP proxies and should be treated as such. This is required for using Chrome with a QUIC-based data reduction proxy. BUG=343579 Review URL: https://codereview.chromium.org/880483004 Cr-Commit-Position: refs/heads/master@{#314879}
-
rogerj authored
The eglWaitSyncKHR function should only be expected to exist if the EGL_KHR_wait_sync extension is supported. The code prior to this patch triggered a DCHECK if only the EGL_KHR_fence_sync extension was available. BUG=None Review URL: https://codereview.chromium.org/900233003 Cr-Commit-Position: refs/heads/master@{#314878}
-
maruel authored
$ git log c698ea2a7..e6677c870 --date=short --format='%ad %ae %s' | sed 's/@chromium\.org//' 2015-02-05 maruel Further limit archival on 32 bits. 2015-02-03 maruel Update /get_slave_code to /bot_code new url. R=vadimsh@chromium.org BUG=419862 Review URL: https://codereview.chromium.org/895903004 Cr-Commit-Position: refs/heads/master@{#314877}
-