- 26 Jan, 2015 8 commits
-
-
ygorshenin authored
BUG=330607 TEST=browser_tests:ProxyAuthOnUserBoardScreenTest.* Review URL: https://codereview.chromium.org/869993003 Cr-Commit-Position: refs/heads/master@{#313048}
-
phoglund authored
BUG=293125 Review URL: https://codereview.chromium.org/877433002 Cr-Commit-Position: refs/heads/master@{#313047}
-
chromeos-commit-bot authored
Cr-Commit-Position: refs/heads/master@{#313046}
-
ricea authored
Some things (notably proxies) are impossible to test using layout tests, and expensive and difficult to test using browser_tests. Add a way to do simple end-to-end tests in net_unittests. BUG=441709 TEST=net_unittests Review URL: https://codereview.chromium.org/722343003 Cr-Commit-Position: refs/heads/master@{#313045}
-
nhiroki authored
This CL supports the step 1 and 2 described in the desing doc: https://docs.google.com/document/d/1qDGbMlwKOXxCRBlw9IirK8Qmna3JqvnO3Aogkfu9UJQ/edit?usp=sharing - Makes ServiceWorkerProviderContext available on both main/worker threads by the lock mechanism so that the context can retain a registration reference for the worker until the worker thread gets ready. - Creates registration object on the worker thread and sets it in ".registration" attribute on SWGlobalScope before evaluating the worker script. [1] Blink: https://codereview.chromium.org/811793002/ [2] Chromium: THIS PATCH [3] Blink: https://codereview.chromium.org/822593003/ BUG=437677 TEST=to be added by [3/3] Review URL: https://codereview.chromium.org/849163002 Cr-Commit-Position: refs/heads/master@{#313044}
-
changwan authored
(depends on downstream change: https://chrome-internal-review.googlesource.com/192999) BUG=451313 Review URL: https://codereview.chromium.org/865413002 Cr-Commit-Position: refs/heads/master@{#313043}
-
fukino authored
This CL includes: - Color the toolbar. - Make the toolbar wider. - Use icons of Material Design. - Remove volume icon from the breadcrumbs. - Add touch feedback for buttons on the toolbar. BUG=402344 TEST=run browser_tests Review URL: https://codereview.chromium.org/873703003 Cr-Commit-Position: refs/heads/master@{#313042}
-
kouhei authored
This CL reenables the disabled test: - DumpAccessibilityTreeTest.AccessibilityANoText. The test result is rebaselined so that it matches what spec says. The alttext for failed <img> load should show filename of the src. http://www.w3.org/TR/1998/REC-html40-19980424/appendix/notes.html#altgen BUG=448518,421300 R=dmazzoni@chromium.org Review URL: https://codereview.chromium.org/866373002 Cr-Commit-Position: refs/heads/master@{#313041}
-
- 25 Jan, 2015 8 commits
-
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/dadbb35..96a857e CQ_EXTRA_TRYBOTS=tryserver.blink:linux_blink_rel,linux_blink_dbg TBR=fmalita@google.com Review URL: https://codereview.chromium.org/878453002 Cr-Commit-Position: refs/heads/master@{#313040}
-
maruel authored
$ git log e98dde9a7..d863df383 --date=short --format='%ad %ae %s' | sed 's/@chromium\.org//' 2015-01-24 maruel Set the parent task id when SWARMING_TASK_ID is set. 2015-01-23 maruel Print a proper error message instead of printing a stack trace on failure. R=vadimsh@chromium.org BUG= Review URL: https://codereview.chromium.org/871263002 Cr-Commit-Position: refs/heads/master@{#313039}
-
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 24 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}
-