- 25 Jan, 2015 6 commits
-
-
rmcilroy authored
The scheduler will post a delayed EndIdlePeriod task to end the idle period at the expected time of the next frame draw. If the next WillBeginFrame is called before this task has been run, then it is possible for the task to end the next frames idle period. Prevent this by cancelling the in-flight tasks when EndIdlePeriod is called. BUG=447478 Review URL: https://codereview.chromium.org/847903004 Cr-Commit-Position: refs/heads/master@{#313038}
-
chrome-tpm authored
Cr-Commit-Position: refs/heads/master@{#313037}
-
bradnelson authored
curl in the devenv doesn't have a usable set of root certificates. This prevents it from using https. BUG=https://code.google.com/p/naclports/issues/detail?id=189 TEST=None TBR=jfb@chromium.org,binji@chromium.org,jmedley@chromium.org Review URL: https://codereview.chromium.org/874063003 Cr-Commit-Position: refs/heads/master@{#313036}
-
v8-autoroll authored
TBR=machenbach@chromium.org Review URL: https://codereview.chromium.org/874123002 Cr-Commit-Position: refs/heads/master@{#313035}
-
chromeos-commit-bot authored
Cr-Commit-Position: refs/heads/master@{#313034}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/a9e8476..dadbb35 CQ_EXTRA_TRYBOTS=tryserver.blink:linux_blink_rel,linux_blink_dbg TBR=fmalita@google.com Review URL: https://codereview.chromium.org/870363002 Cr-Commit-Position: refs/heads/master@{#313033}
-
- 24 Jan, 2015 34 commits
-
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/31ff298..a9e8476 CQ_EXTRA_TRYBOTS=tryserver.blink:linux_blink_rel,linux_blink_dbg TBR=borenet@google.com Review URL: https://codereview.chromium.org/873023002 Cr-Commit-Position: refs/heads/master@{#313032}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/070eaee..31ff298 CQ_EXTRA_TRYBOTS=tryserver.blink:linux_blink_rel,linux_blink_dbg TBR=borenet@google.com Review URL: https://codereview.chromium.org/874043003 Cr-Commit-Position: refs/heads/master@{#313031}
-
sergeyu authored
HostInstaller uses navigator.platform to figure out which package needs to be downloaded to install host on the curren machine. Problem was that on linux navigator.platform may be set to "Linux i686" and HostIntaller wasn't handling it properly. With this change: 1. "Linux i686" is properly recognized as ia32 Linux. 2. Unsupported platforms are properly handled by disabling the "Share" button. BUG=442943 Review URL: https://codereview.chromium.org/874683002 Cr-Commit-Position: refs/heads/master@{#313030}
-
Nico Weber authored
BUG=451741 TBR=hans@chromium.org Review URL: https://codereview.chromium.org/875643003 Cr-Commit-Position: refs/heads/master@{#313029}
-
ccameron authored
Rename client methods to start with the prefix DelegatedFrame, to indicate to which interface they belong (not doing this had resulted in each RWHV having IsHidden and IsVisible functions, which weren't opposites of each other). Do not access the RenderWidgetHostImpl directly in DelegatedFrameHost, but rather create client methods for all functions that will need to access it (and, for most of these methods, send the IPCs directly on the RWHI, rather than re-looking it up by its process and routing). Clean up the interfaces used for testing. BUG=(paying down technical debt) Review URL: https://codereview.chromium.org/864333004 Cr-Commit-Position: refs/heads/master@{#313028}
-
Sergiy Byelozyorov authored
BUG=426897 TBR=phajdan.jr@chromium.org CC=kbr@chromium.org Review URL: https://codereview.chromium.org/865693003 Cr-Commit-Position: refs/heads/master@{#313027}
-
vchigrin authored
Review URL: https://codereview.chromium.org/874703002 Cr-Commit-Position: refs/heads/master@{#313026}
-
sergiyb authored
Revert of Copy debug PNaCl plugin in Dev builds of the chromoting webapp. (patchset #1 id:1 of https://codereview.chromium.org/872633006/) Reason for revert: Broke compile, e.g. http://build.chromium.org/p/chromium/buildstatus?builder=Win&number=28337 Original issue's description: > Copy debug PNaCl plugin in Dev builds of the chromoting webapp. > > With this change the Debug version of the PNaCl plugin will be copied to > the webapp directory allowing to debug PNaCl plugin (using nacl-gdb). > > Also updated build-webapp.py to process all *.jinja2 input files as jinja2 > templates. > > BUG=451643 > > Committed: https://crrev.com/65ffdafc8538b14ad0cbdf6a57d9d21e1e882a9d > Cr-Commit-Position: refs/heads/master@{#313024} TBR=jamiewalch@chromium.org,sergeyu@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=451643 Review URL: https://codereview.chromium.org/870273002 Cr-Commit-Position: refs/heads/master@{#313025}
-
sergeyu authored
With this change the Debug version of the PNaCl plugin will be copied to the webapp directory allowing to debug PNaCl plugin (using nacl-gdb). Also updated build-webapp.py to process all *.jinja2 input files as jinja2 templates. BUG=451643 Review URL: https://codereview.chromium.org/872633006 Cr-Commit-Position: refs/heads/master@{#313024}
-
vchigrin authored
Review URL: https://codereview.chromium.org/868193002 Cr-Commit-Position: refs/heads/master@{#313023}
-
tfarina authored
InProcessContextProvider is twin brother of the ContextProviderInProcess from webkit/common/gpu. We built one here specifically for compositor in order to remove the dependency on webkit/. We did that for some reasons: one is that webkit/ abstraction glue is going away, the second is that compositor can't depend on content, and thus we couldn't simply move the code into content and make compositor use it. BUG=338338 TEST=compositor_unittests R=piman@chromium.org TBR=reed@google.com (for skia/ext deps addition) Review URL: https://codereview.chromium.org/853353003 Cr-Commit-Position: refs/heads/master@{#313022}
-
tfarina authored
SkBitmapToNSImage() is deprecated and we should change its calls to SkBitmapToNSImageWithColorSpace(). BUG=69432 TEST=gfx_unittests R=thakis@chromium.org Review URL: https://codereview.chromium.org/869723002 Cr-Commit-Position: refs/heads/master@{#313021}
-
shrikant authored
I don't expect significant improvment with such little tuning, but want to test it with more user base to see the direction. Here is the summary of experiments I did on my machine. I have total of 454 font files on my system. Percent of file content cached: 85%, File Size: 35MB Cached fonts: 422 (92%) Percent of file content cached: 75% File Size: 29MB Cached fonts 335 (73%) Percent of file content cached: 65% File Size: 24MB Cached fonts: 240 (52%) Percent of file content cached: 60% File Size: 23MB Cached fonts 236 (51%) Percent of file content cached: 50% File Size: 13MB Cached fonts 231 (50%) BUG=449687 R=cpu,scottmg,ananta Review URL: https://codereview.chromium.org/869003002 Cr-Commit-Position: refs/heads/master@{#313020}
-
v8-autoroll authored
TBR=machenbach@chromium.org Review URL: https://codereview.chromium.org/876473002 Cr-Commit-Position: refs/heads/master@{#313019}
-
chrome-tpm authored
Cr-Commit-Position: refs/heads/master@{#313018}
-
cschuet authored
This CL is a follow-up to 776093004 and 811033002 and wires up the UI (WebUI only!) to the disallow shutdown policy. BUG=312541 TEST=Full browser- and unit-test coverage WebUI BUG= Review URL: https://codereview.chromium.org/871483003 Cr-Commit-Position: refs/heads/master@{#313017}
-
pneubeck authored
This moves the functions - NormalizeAlgorithm from enterprise_platform_keys_natives to platform_keys_natives - sign from enterprise.platformKeysInternal to platformKeysInternal . Both will be reused by the new platformKeys API. platformKeysInternal will then be extended about the internal selectClientCertificates function that is needed for platformKeys. No functional changes. TBR=arv@chromium.org BUG=450167 NOPRESUBMIT=true Review URL: https://codereview.chromium.org/847333004 Cr-Commit-Position: refs/heads/master@{#313016}
-
cschuet authored
Replaced all EXPECT_EQ for booleans with EXPECT_TRUE/FALSE TBR=mnissler@chromium.org Review URL: https://codereview.chromium.org/874833002 Cr-Commit-Position: refs/heads/master@{#313015}
-
pneubeck authored
BUG=451029 Review URL: https://codereview.chromium.org/866753002 Cr-Commit-Position: refs/heads/master@{#313014}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/90acb8e..070eaee CQ_EXTRA_TRYBOTS=tryserver.blink:linux_blink_rel,linux_blink_dbg TBR=borenet@google.com Review URL: https://codereview.chromium.org/874613005 Cr-Commit-Position: refs/heads/master@{#313013}
-
chromeos-commit-bot authored
Cr-Commit-Position: refs/heads/master@{#313012}
-
sammc authored
Previously, calling print() on the window object for a plugin document resulted in printing a blank page. This adds an OverridePrint method to PrintWebViewHelper::Delegate so MimeHandlerViewContainers can replace the default print behavior with posting a print message to the mime handler. BUG=448720 Review URL: https://codereview.chromium.org/858363002 Cr-Commit-Position: refs/heads/master@{#313011}
-
mseaborn authored
There's no need for this flag to be sent from ppb_nacl_private_impl.cc to plugin.cc and back again. It can stay within ppb_nacl_private_impl.cc. This merges two error-handling checks in LaunchSelLdr(). BUG=239656 TEST=browser_tests Review URL: https://codereview.chromium.org/874603002 Cr-Commit-Position: refs/heads/master@{#313010}
-
kbr authored
The copies in src/chrome/ were left over from a previous attempt to put them on the GPU try servers. These tests are still running on the chromium.gpu.fyi waterfall. The isolate's build target will be picked up from src/gpu/gpu.gyp. BUG=451180 Review URL: https://codereview.chromium.org/871813002 Cr-Commit-Position: refs/heads/master@{#313009}
-
oshima authored
BUG=146464 NOTRY=true TBR=benwells@chromium.org Review URL: https://codereview.chromium.org/874693004 Cr-Commit-Position: refs/heads/master@{#313008}
-
kbr authored
Suppresses some debugging output unless the test fails. Updates some tests. BUG=451017 Review URL: https://codereview.chromium.org/866243003 Cr-Commit-Position: refs/heads/master@{#313007}
-
Daniel Cheng authored
BUG=417463 TBR=scottmg@chromium.org Review URL: https://codereview.chromium.org/873943002 Cr-Commit-Position: refs/heads/master@{#313006}
-
mtomasz authored
It still partly a controller, but it mostly have view logic. TEST=Tested manually with to show a Drive banner. BUG=451658 Review URL: https://codereview.chromium.org/867033003 Cr-Commit-Position: refs/heads/master@{#313005}
-
garykac authored
This cl: * Merges in new strings needed by AppRemoting * Updates some shared strings to make them generic (to remove the need for a separate AppRemoting resources target) * Fixes incorrectly annotated i18n-content strings so that our verify_resources script can detect them properly. Strings that were genericized: * IDS_DESCRIPTION_AUTHORIZE * IDS_ERROR_BAD_PLUGIN_VERSION * IDS_ERROR_INCOMPATIBLE_PROTOCOL * IDS_ERROR_MISSING_PLUGIN General strings that were added: * IDS_ERROR_NOT_AUTHORIZED - Will soon be used by fromHttpStatus New strings: * IDS_ERROR_APP_NOT_AUTHORIZED - Used by AppRemoting instead of the generic string to provide more info to the user. * IDS_PRODUCT_NAME_APP_STREAMING - Used instead of IDS_PRODUCT_NAME so that we don't need a separate resources target for AppRemoting. * ...many more, including those that will be used by the host code when it is merged... BUG= Review URL: https://codereview.chromium.org/873883002 Cr-Commit-Position: refs/heads/master@{#313004}
-
oshima authored
Otherwise, pixels on the edge of wallpaper may be blended with the pixel outside of the boundary. BUG=368591 R=mukai@chromium.org Review URL: https://codereview.chromium.org/871773004 Cr-Commit-Position: refs/heads/master@{#313003}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/6a14434..90acb8e CQ_EXTRA_TRYBOTS=tryserver.blink:linux_blink_rel,linux_blink_dbg TBR=borenet@google.com Review URL: https://codereview.chromium.org/867383003 Cr-Commit-Position: refs/heads/master@{#313002}
-
Daniel Cheng authored
BUG=417463 TBR=yukawa@chromium.org Review URL: https://codereview.chromium.org/872713006 Cr-Commit-Position: refs/heads/master@{#313001}
-
Daniel Cheng authored
BUG=417463 TBR=gwilson@chromium.org Review URL: https://codereview.chromium.org/871123002 Cr-Commit-Position: refs/heads/master@{#313000}
-
mtomasz authored
Concurrently writing with multiple FileWriters causes broken files. This patch wraps both reading a writing with a queue made of chained promises. TEST=browser_tests: *ImportHistoryTest* BUG=None Review URL: https://codereview.chromium.org/868133004 Cr-Commit-Position: refs/heads/master@{#312999}
-