- 21 Jul, 2016 29 commits
-
-
https://codereview.chromium.org/2163573002/piman authored
Reason for revert: Looks like this broke gyp: https://build.chromium.org/p/chromium.win/builders/Win8%20GYP%20%28dbg%29/builds/892 https://build.chromium.org/p/chromium.mac/builders/Mac%20GYP%20%28dbg%29/builds/1249 The issue seems non-trivial to fix (may need an angle roll), so reverting. Original issue's description: > Roll gtest. > > The change in directory structure requires the checkout to be moved to > a different directory, and some dummy header files that re-direct to the > new location. > > TBR=juliatuttle@chromium.org > > Committed: https://crrev.com/4266a7d49d60d3af744bfb513cbdeb716b0b6782 > Cr-Commit-Position: refs/heads/master@{#406741} TBR=phajdan.jr@chromium.org,agrieve@chromium.org,juliatuttle@chromium.org,amistry@chromium.org # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true Review-Url: https://codereview.chromium.org/2171663002 Cr-Commit-Position: refs/heads/master@{#406745}
-
leon.han authored
BUG=624136 Review-Url: https://codereview.chromium.org/2161423002 Cr-Commit-Position: refs/heads/master@{#406744}
-
rnephew authored
BUG=615157 Review-Url: https://codereview.chromium.org/2172463003 Cr-Commit-Position: refs/heads/master@{#406743}
-
dadrian authored
This adds a |ProcessExpectStaple| method to TransportSecurityState that implements reporting for Expect-Staple, using contents of SSLInfo and OCSPVerifyResult. No report is sent if a valid staple is provided, or if the remote host is not on the Expect-Staple preload list. This method is not currently called by any socket implementation. BUG=598021 Review-Url: https://codereview.chromium.org/2144693004 Cr-Commit-Position: refs/heads/master@{#406742}
-
amistry authored
The change in directory structure requires the checkout to be moved to a different directory, and some dummy header files that re-direct to the new location. TBR=juliatuttle@chromium.org Review-Url: https://codereview.chromium.org/2163573002 Cr-Commit-Position: refs/heads/master@{#406741}
-
sadrul authored
Make sure the key events received by the aura::WindowTreeHost instance goes through the IME, so that text input works correctly. BUG=629596 Review-Url: https://codereview.chromium.org/2166863002 Cr-Commit-Position: refs/heads/master@{#406740}
-
rockot authored
Revert of Support early associated interface binding on ChannelMojo (patchset #5 id:80001 of https://codereview.chromium.org/2163633003/ ) Reason for revert: Lots of browser_tests failures. https://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_rel_ng/builds/266272 Original issue's description: > Support early associated interface binding on ChannelMojo > > Changes the associated bindings implementation for ChannelMojo > such that remote interfaces can be acquired immediately upon > ChannelMojo construction rather than having to wait for connection > on the IO thread. > > Simplifies the Channel bootstrapping process, removing a round-trip > Init message (and in fact the entire IPC::mojom::Boostrap interface) > since there's no need to actually exchange associated interface handles > over the pipe. Instead both sides can assume the other will use a fixed, > reserved endpoint ID for their IPC::mojom::Channel interface. > > This also removes the restriction that associated interfaces must be > added to a Channel after Init. Instead the same constraints apply as > with AddFilter: an associated interface, like a filter, may be added > at any time as long as either Init hasn't been called OR the remote > process hasn't been launched. > > The result of this CL is that any place it's safe to AddFilter, > it's also safe to AddAssociatedInterface; and any place it's safe to > Send, it's also safe to GetRemoteAssociatedInterface and begin using > any such remote interface immediately. > > Remote interface requests as well as all messages to remote interfaces > retain FIFO with respect to any Send calls on the same thread. Local > interface request dispatch as well as all messages on locally bound > associated interfaces retain FIFO with respect to any OnMessageReceived > calls on the same thread. > > BUG=612500,619202 > > Committed: https://crrev.com/e1037f997da9e1d44ca3b09d4ff32f0465673091 > Cr-Commit-Position: refs/heads/master@{#406720} TBR=yzshen@chromium.org # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=612500,619202 Review-Url: https://codereview.chromium.org/2167973002 Cr-Commit-Position: refs/heads/master@{#406739}
-
yosin authored
This patch makes |CompositeEditCommand::moveParagraph()| to abort when destination of paragraph becomes invisible. This patch also changes |assert_selection()| test utility to handle no BODY element document to support attached test. BUG=620873 TEST=LayoutTests/editing/execCommand/apply_style/justify_full_without_body_crash.html Review-Url: https://codereview.chromium.org/2131113002 Cr-Commit-Position: refs/heads/master@{#406738}
-
kbr authored
(Attempted to put this in the "gpu" category but ran into http://crbug.com/630030 .) This will help in the creation of TBMv2 WebGL benchmarks. BUG=catapult:#2446 Review-Url: https://codereview.chromium.org/2163373005 Cr-Commit-Position: refs/heads/master@{#406737}
-
hcarmona authored
Includes test. Screenshot in bug. BUG=626119 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:closure_compilation Review-Url: https://codereview.chromium.org/2092763004 Cr-Commit-Position: refs/heads/master@{#406736}
-
jbauman authored
The current path does a conversion from YUV to an RGBA SkImage, then paints that to another Skia canvas and does a CopyTexImageCHROMIUM to the WebGL texture. We can optimize this by removing the paint to the canvas and doing a copy directly from the SkImage to the WebGL texture. BUG=625900 Review-Url: https://codereview.chromium.org/2127053004 Cr-Commit-Position: refs/heads/master@{#406735}
-
wangxianzhu authored
BUG=629932 Review-Url: https://codereview.chromium.org/2160983007 Cr-Commit-Position: refs/heads/master@{#406734}
-
raymes authored
SecureOriginWhiteListTest.UnsafelyTreatInsecureOriginAsSecure currently marks 2 insecure origins as secure. This state leaks to other tests such that those origins are treated as secure in those tests. This CL cleans up the state by resetting SchemeAndOriginWhitelist after the test. BUG=629499 Review-Url: https://codereview.chromium.org/2157363004 Cr-Commit-Position: refs/heads/master@{#406733}
-
dcastagna authored
In case a gpu query is not required to check if overlay resources have been released, we can release overlay resources used by the previous frame on swap-ack instead of waiting until the next swap buffers call. BUG=b/29430506 CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_blink_rel Review-Url: https://codereview.chromium.org/2166973002 Cr-Commit-Position: refs/heads/master@{#406732}
-
tedchoc authored
BUG=625315 Review-Url: https://codereview.chromium.org/2159133003 Cr-Commit-Position: refs/heads/master@{#406731}
-
bnc authored
Remove enable_priority_dependencies from HttpNetworkSession::Params and from SpdySessionPool. Remove priority_dependencies_enabled_ from SpdySession. BUG=564228 Review-Url: https://codereview.chromium.org/2165023002 Cr-Commit-Position: refs/heads/master@{#406730}
-
chenwilliam authored
These files are from: https://github.com/paulirish/npm-publish-devtools-frontend - Will add npm scripts for hosted mode workflow BUG=629914 Review-Url: https://codereview.chromium.org/2171503002 Cr-Commit-Position: refs/heads/master@{#406729}
-
piman authored
Because unique_ptr and move semantics are more awesome. BUG=None CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel Review-Url: https://codereview.chromium.org/2163093002 Cr-Commit-Position: refs/heads/master@{#406728}
-
brettw authored
In order to roll GN af92718f..1f417360 (r405547:r406705) and pick up the following changes: 267b1de9 Make `gn refs` handle files in data directories properly. 5fc3fafd Add TaskPriority as a parameter to SequencedWorkerPool in preparation for TaskScheduler experiment. aca08753 Make `gn refs` look at script files. 05316e06 Re-land r406064 "[GN] Add JSON project writer". 5a1b4b17 Revert of [GN] Add JSON project writer (patchset #11 id:200001 of https://codereview.chromium.org/2064533002/ ) d2edeb9a [GN] Add JSON project writer f0544fc6 Remove calls to MessageLoop::current() in tools. d93e5cf4 Document GN invoker and target name variables. TBR=dpranke@chromium.org Review-Url: https://codereview.chromium.org/2166993002 Cr-Commit-Position: refs/heads/master@{#406727}
-
qyearsley authored
This just adds an entry to mb_config.pyl; the rest of the config for this builder is in http://crrev.com/2153503006. BUG=622865 Review-Url: https://codereview.chromium.org/2156633003 Cr-Commit-Position: refs/heads/master@{#406726}
-
bashi authored
Add ClientRegistry class which becomes a base class of both MemoryCoordinator and ChildMemoryCoordinatorImpl since client registration will be the same in both coordinators. BUG=617492 Review-Url: https://codereview.chromium.org/2144163002 Cr-Commit-Position: refs/heads/master@{#406725}
-
jennyz authored
BUG=460610 Review-Url: https://codereview.chromium.org/2163883006 Cr-Commit-Position: refs/heads/master@{#406724}
-
sky authored
BUG=626869 TEST=none R=msw@chromium.org Review-Url: https://codereview.chromium.org/2168483006 Cr-Commit-Position: refs/heads/master@{#406723}
-
palakj authored
* Changes received from browser are multiplexed and passed on to each observer. * Each observer extracts the required subset of observations from bulk observations of the connnection using its array of indices. * The callback is fired with a map of object store to array of observations. Current Implementation and Future Scope: http://goo.gl/r0eUpe Reference: https://github.com/dmurph/indexed-db-observers/blob/gh-pages/EXPLAINER.md BUG=609934 Review-Url: https://codereview.chromium.org/2125213002 Cr-Commit-Position: refs/heads/master@{#406722}
-
ianwen authored
Instead of using TextView#getText, we should use Tab#getUrl() instead. BUG=629672 Review-Url: https://codereview.chromium.org/2155243004 Cr-Commit-Position: refs/heads/master@{#406721}
-
rockot authored
Changes the associated bindings implementation for ChannelMojo such that remote interfaces can be acquired immediately upon ChannelMojo construction rather than having to wait for connection on the IO thread. Simplifies the Channel bootstrapping process, removing a round-trip Init message (and in fact the entire IPC::mojom::Boostrap interface) since there's no need to actually exchange associated interface handles over the pipe. Instead both sides can assume the other will use a fixed, reserved endpoint ID for their IPC::mojom::Channel interface. This also removes the restriction that associated interfaces must be added to a Channel after Init. Instead the same constraints apply as with AddFilter: an associated interface, like a filter, may be added at any time as long as either Init hasn't been called OR the remote process hasn't been launched. The result of this CL is that any place it's safe to AddFilter, it's also safe to AddAssociatedInterface; and any place it's safe to Send, it's also safe to GetRemoteAssociatedInterface and begin using any such remote interface immediately. Remote interface requests as well as all messages to remote interfaces retain FIFO with respect to any Send calls on the same thread. Local interface request dispatch as well as all messages on locally bound associated interfaces retain FIFO with respect to any OnMessageReceived calls on the same thread. BUG=612500,619202 Review-Url: https://codereview.chromium.org/2163633003 Cr-Commit-Position: refs/heads/master@{#406720}
-
amistry authored
BUG=604282 CQ_INCLUDE_TRYBOTS=tryserver.chromium.linux:linux_optional_gpu_tests_rel;tryserver.chromium.mac:mac_optional_gpu_tests_rel;tryserver.chromium.win:win_optional_gpu_tests_rel Review-Url: https://codereview.chromium.org/2127693002 Cr-Commit-Position: refs/heads/master@{#406719}
-
joedow authored
This change is a simple refactoring to rename the 'Gnubby' and 'RemoteSecurityKey' file/class names/comments/etc to be consistent. I've chosen to use 'SecurityKey' as it is shorter that RemoteSecurityKey (which was causing too many 80 char limit issues). No functional changes are expected as a result of this change. Note: Not every instance of Gnubby or RemoteSecurityKey has been changed. The registry key used for toggling this functionality still uses 'gnubby'. I don't want to change that here. Also, the process used on the host machine is still called remote_security_key so classes associated with that process were not renamed (neither were the IPC messages used by it). BUG=593736 TBR=jochen@chromium.org Review-Url: https://codereview.chromium.org/2164753004 Cr-Commit-Position: refs/heads/master@{#406718}
-
sammiequon authored
BUG=623944 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:closure_compilation Review-Url: https://codereview.chromium.org/2153963002 Cr-Commit-Position: refs/heads/master@{#406717}
-
- 20 Jul, 2016 11 commits
-
-
metzman authored
Build expat from source so that it can be instrumented when building the expat fuzzer with use_afl. TBR=jam@chromium.org BUG=629258 Review-Url: https://codereview.chromium.org/2167823002 Cr-Commit-Position: refs/heads/master@{#406716}
-
lshang authored
Press 'Delete' or 'Backspace' key from keyboard will delete selected history items on MD History. BUG=627408 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:closure_compilation Review-Url: https://codereview.chromium.org/2159773003 Cr-Commit-Position: refs/heads/master@{#406715}
-
michaelpg authored
This was never correct AFAICT, which had a minor impact on the languages page test. BUG=none TEST=SettingsLanguagesPageBrowserTest.LanguagesPage R=tommycli@chromium.org Review-Url: https://codereview.chromium.org/2170583002 Cr-Commit-Position: refs/heads/master@{#406714}
-
piman authored
BUG=629795 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel Review-Url: https://codereview.chromium.org/2170653002 Cr-Commit-Position: refs/heads/master@{#406713}
-
liberato authored
This metric records frames sent by AVDA, bucketed by whether they are or are not overlays. The goal is to provide an approximate count of how often SurfaceView is used versus SurfaceTexture. BUG=629313 Review-Url: https://codereview.chromium.org/2163513002 Cr-Commit-Position: refs/heads/master@{#406712}
-
skia-deps-roller authored
https://chromium.googlesource.com/skia.git/+log/7d46f4af7dc7..3fb87201a104 $ git log 7d46f4af7..3fb87201a --date=short --no-merges --format='%ad %ae %s' 2016-07-20 reed Revert of have MakeFromImage fission the SkImage into a raster or a texture (patchset #1 id:1 of https://codereview.chromium.org/2167813002/ ) 2016-07-20 msarett Refactor parsing and storage of SkGammas 2016-07-20 reed have MakeFromImage fission the SkImage into a raster or a texture 2016-07-20 brianosman Adding an SkColorSpace to SkImage_Gpu CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_blink_rel TBR=jcgregorio@google.com Review-Url: https://codereview.chromium.org/2172443003 Cr-Commit-Position: refs/heads/master@{#406711}
-
sebmarchand authored
I think that I should use courgette64.* but I'm not sure if the copy rule support wildcards. BUG=629243 Review-Url: https://codereview.chromium.org/2168743002 Cr-Commit-Position: refs/heads/master@{#406710}
-
einbinder authored
Review-Url: https://codereview.chromium.org/2161033005 Cr-Commit-Position: refs/heads/master@{#406709}
-
Krishna Govind authored
Cr-Commit-Position: refs/heads/master@{#406708}
-
zmo authored
BUG=628863 TEST=gpu_unittests, webgl2_conformance R=piman@chromium.org CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel Review-Url: https://codereview.chromium.org/2165873002 Cr-Commit-Position: refs/heads/master@{#406707}
-
chongz authored
On Windows native apps (e.g. Notepad) Shift+F10 will trigger contextmenu on keydown, we should match this system bahavior. Web exposed effect: JS will be able to prevent Shift+F10 contextmenu by preventing 'keydown'. (Used to be 'keyup') Interop: After CL we will match FF, IE, as well as Chrome on other platforms. BUG=405813 Review-Url: https://codereview.chromium.org/2160983003 Cr-Commit-Position: refs/heads/master@{#406706}
-