- 21 Jul, 2016 15 commits
-
-
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 25 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}
-
dmurph authored
R=motek@chromium.org,rkaplow@chromium.org BUG=579763 Review-Url: https://codereview.chromium.org/2143113002 Cr-Commit-Position: refs/heads/master@{#406705}
-
catapult-deps-roller authored
https://chromium.googlesource.com/external/github.com/catapult-project/catapult.git/+log/80f6597f809c..cda131c42ac8 $ git log 80f6597f8..cda131c42 --date=short --no-merges --format='%ad %ae %s' TBR=catapult-sheriff@chromium.org Review-Url: https://codereview.chromium.org/2171573002 Cr-Commit-Position: refs/heads/master@{#406704}
-
sadrul authored
This code has been dead since 2014 when its only use was removed (crrev.com/251421). So remove the code. BUG=none Review-Url: https://codereview.chromium.org/2163223004 Cr-Commit-Position: refs/heads/master@{#406703}
-
lof84 authored
Since we increased timeout for cc tests in 579189, this test should pass. BUG=516384 R=enne@chromium.org, danakj@chromium.org, vmpstr@chromium.org Review-Url: https://codereview.chromium.org/2017383002 Cr-Commit-Position: refs/heads/master@{#406702}
-
eugenebut authored
This prevents showing green SSL lock if previously loaded secure page has failed to load. BUG=628471 Review-Url: https://codereview.chromium.org/2165443002 Cr-Commit-Position: refs/heads/master@{#406701}
-
jamescook authored
Mechanical move, no functional changes BUG=615155 TEST=compiles Review-Url: https://codereview.chromium.org/2169653002 Cr-Commit-Position: refs/heads/master@{#406700}
-
dadrian authored
Extract OCSPCertStatus::Status to standalone OCSPRevocationStatus, and add OCSPVerifyResult for tracking stapled OCSP responses cross-platform. OCSPVerifyResult is populated by CertVerifyProc, but is currently unused. In the future, it will be consumed by Expect-Staple reports. This CL also updates mini-CA and the spawned test server to be able to send a wider range of OCSP responses. Since OCSP responses are short lived, test the new functionality in url_request_unittest.cc and dynamically generate OCSP responses. BUG=598021 Review-Url: https://codereview.chromium.org/2100303002 Cr-Commit-Position: refs/heads/master@{#406699}
-
sebmarchand authored
Remove the 'symbol_level==2' condition as we can assume than an official build (without fast link) will have symbols. R=dpranke@chromium.org BUG=628056 Review-Url: https://codereview.chromium.org/2167793002 Cr-Commit-Position: refs/heads/master@{#406698}
-
sungmann.cho authored
BUG=None Review-Url: https://codereview.chromium.org/2159413003 Cr-Commit-Position: refs/heads/master@{#406697}
-
juncai authored
Based on the comment from: https://codereview.chromium.org/2155743002/ This CL changes ChooserController::Observer to ChooserController::View to better reflect its purpose, since ChooserController needs to update its view when necessary. BUG=629878 Review-Url: https://codereview.chromium.org/2163683005 Cr-Commit-Position: refs/heads/master@{#406696}
-
brettw authored
One change: 57d33be Convert GN source_set to static_library. BUG=627637 Review-Url: https://codereview.chromium.org/2165063002 Cr-Commit-Position: refs/heads/master@{#406695}
-
bsep authored
BUG=628038 Review-Url: https://codereview.chromium.org/2151413002 Cr-Commit-Position: refs/heads/master@{#406694}
-
fsamuel authored
We would like each SurfaceFactory to be tied to a single client ID and single SurfaceFactoryClient to simplify cc code and unify a bunch of code paths. Mus Window Server was an exception here. Two SurfaceFactories shared a single client ID. This has been changed. BUG=629940 Review-Url: https://codereview.chromium.org/2163423002 Cr-Commit-Position: refs/heads/master@{#406693}
-
sebsg authored
Record and log the use of a profile and/or credit card when they get used in in Payment Request. Calls the RecordAndLogUse() method that is currently used in Autofill. BUG=625643 TEST=PersonalDataManagerTest, PaymentRequestUseStatsTest Review-Url: https://codereview.chromium.org/2126213002 Cr-Commit-Position: refs/heads/master@{#406692}
-