- 25 Aug, 2016 40 commits
-
-
groby authored
WebUI URLRequest source data is (on desktop) backed by a memory-mapped file. Copying that data in CompleteRead can trigger jankiness due to potential file IO caused by the read. This CL moves the memcpy on the file thread. It is also a re-land of https://codereview.chromium.org/2158123003/ with minor changes to fix a crash. R=dbeam@chromium.org, mmenke@chromium.org, dproy@chromium.org BUG=455423 Review-Url: https://codereview.chromium.org/2268653002 Cr-Commit-Position: refs/heads/master@{#414269}
-
yuweih authored
OAuthTokenConsumer.revokeLatestToken() revokes the token on the background thread and calls the callback directly on that thread once it is done. This would be potentially thread unsafe if the caller doesn't realize the callback will be called on a non-main thread. Currently we don't see any bug related to this problem since the only caller of revokeLatestToken() passes in null as the callback. This CL makes revokeLatestToken() post a task to the main thread to run the callback when the token is revoked. Review-Url: https://codereview.chromium.org/2277723003 Cr-Commit-Position: refs/heads/master@{#414268}
-
jrummell authored
During recent reviews there have been several nits reported. This change fixes a few of them. BUG=442566 TEST=updated tests pass Review-Url: https://codereview.chromium.org/2169713002 Cr-Commit-Position: refs/heads/master@{#414267}
-
yosin authored
This patch gets rid of |FrameSelection::moveTo()| taking two |VisiblePosition| objects since its call site is only one for improving code health. BUG=n/a TEST=n/a; no behavior changes Review-Url: https://codereview.chromium.org/2278463002 Cr-Commit-Position: refs/heads/master@{#414266}
-
harkness authored
This isn't implemented yet, but will be provide the Mojo service that will provide blink an access point to the BackgroundBudgetService. This also adds a mock and a layout test to check the mojo service. BUG=617971 Review-Url: https://codereview.chromium.org/2231873002 Cr-Commit-Position: refs/heads/master@{#414265}
-
agrieve authored
Mainly for proguard and build rules changes. Review-Url: https://codereview.chromium.org/2271343002 Cr-Commit-Position: refs/heads/master@{#414264}
-
kochi authored
Continuation from https://codereview.chromium.org/2132343002/ In HTML imports, custom elements should be created or upgraded. BUG=594918 Review-Url: https://codereview.chromium.org/2242743002 Cr-Commit-Position: refs/heads/master@{#414263}
-
yosin authored
This patch converts "editing/execCommand/hilitecolor.html" to use w3c test harness to simplify test script for improving readability. BUG=n/a TEST=n/a; no behavior changes Review-Url: https://codereview.chromium.org/2270693007 Cr-Commit-Position: refs/heads/master@{#414262}
-
sky authored
Also changes NOTIMPLEMENTED policies a bit. BUG=640773 TEST=none R=jamescook@chromium.org Review-Url: https://codereview.chromium.org/2269383004 Cr-Commit-Position: refs/heads/master@{#414261}
-
tzik authored
This CL removes DispatchToMethod usage in ObserverListThreadSafe, which is the only user of DispatchToMethod that depends on base::internal::Unwrap. Review-Url: https://codereview.chromium.org/2268283002 Cr-Commit-Position: refs/heads/master@{#414260}
-
karandeepb authored
r411889 introduced scrolling with layers and gave the scroll view in ExtensionInstallDialog an opaque background color. This caused the scroll view to obscure the icon for the cases where the extension prompt has no webstore data. This is because for this case, the scroll view and the icon view in the ExtensionInstallDialogView overlap. This CL fixes the regression by making the scroll view and icon view not overlap for this case. The scroll view is extended to span the full content width and a separator is added between the title and the scroll view if the prompt shows permissions. BUG=638093 Review-Url: https://codereview.chromium.org/2259723003 Cr-Commit-Position: refs/heads/master@{#414259}
-
petewil authored
BUG=610521 Review-Url: https://codereview.chromium.org/2277663003 Cr-Commit-Position: refs/heads/master@{#414258}
-
panicker authored
BUG=635596 Review-Url: https://codereview.chromium.org/2244813002 Cr-Commit-Position: refs/heads/master@{#414257}
-
rtoy authored
https://codereview.chromium.org/2242573002 We'll do the channel interpretation and mode in a different way. TBR=hongchan@chromium.org BUG=640575,636576 TEST=Test from 640575 passes Review-Url: https://codereview.chromium.org/2276973002 Cr-Commit-Position: refs/heads/master@{#414256}
-
yosin authored
This patch converts "editing/execCommand/switch-list-type-with-orphaned-li.html" to use w3c test harness to simplify test script for improving readability. BUG=n/a TEST=n/a; no behavior changes Review-Url: https://codereview.chromium.org/2272983002 Cr-Commit-Position: refs/heads/master@{#414255}
-
mcasas authored
This CL implements support for (auto)exposure configuration, following discussion in [1]: - s/FocusMode/MeteringMode/ and reusing it for |exposureMode| in idl, mojom and Java enum. - this reuse prompts refactoring some code into anonymous-ns static functions. - Android's |mAreaOfInterest| is cleared when the user passes "unavailable" in either focus or exposure (note: focus and exposure shared the points of interest as is customary in camera apps). BUG=368381,518807 [1] https://github.com/w3c/mediacapture-image/issues/49 Review-Url: https://codereview.chromium.org/2270563006 Cr-Commit-Position: refs/heads/master@{#414254}
-
thomasanderson authored
BUG=638394 Review-Url: https://codereview.chromium.org/2269083003 Cr-Commit-Position: refs/heads/master@{#414253}
-
kcarattini authored
This is my attempt to fix the flakiness of this browsertest by having the UI thread wait for the report to be sent on the IO thread. BUG=613883,638316 Review-Url: https://codereview.chromium.org/2250163003 Cr-Commit-Position: refs/heads/master@{#414252}
-
bsep authored
https://codereview.chromium.org/2263733002 added 80% zoom to the list of presets, but I forgot it in the settings dropdown. And it looks like 250% was missing from the settings too, for some reason. I can't find anything to indicate this was intentional, so I included it as well. Also updated the comments so that no one else makes this mistake. BUG=632323 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:closure_compilation Review-Url: https://codereview.chromium.org/2278783002 Cr-Commit-Position: refs/heads/master@{#414251}
-
agrieve authored
BUG=639823 Review-Url: https://codereview.chromium.org/2269143005 Cr-Commit-Position: refs/heads/master@{#414250}
-
waffles authored
TEST=https://docs.google.com/a/google.com/document/d/1P0WslUXMUO9azLmWZ0AtQ-sGExWbHttr_2gQWDXf3MY/pub BUG=624086 Review-Url: https://codereview.chromium.org/2270243002 Cr-Commit-Position: refs/heads/master@{#414249}
-
recipe-roller authored
This is an automated CL created by the recipe roller. This CL rolls recipe changes from upstream projects (e.g. depot_tools) into downstream projects (e.g. tools/build). Please review the expectation changes, and LGTM as normal. The recipe roller will *NOT* CQ the change itself, so you must commit the change manually. More info is at https://goo.gl/zkKdpD. Use https://goo.gl/noib3a to file a bug (or complain) build: https://crrev.com/caa4e0ba756e8a3b5592a604d53ddaf9ba92dfbf Make chromium_tests recipe module explicitly set GIT_MODE (agable@chromium.org) R=agable@chromium.org BUG=640251 Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Review-Url: https://codereview.chromium.org/2272213002 Cr-Commit-Position: refs/heads/master@{#414248}
-
yosin authored
This patch converts "editing/execCommand/format-block-with-braces.html" to use w3c test harness to simplify test script for improving readability. BUG=n/a TEST=n/a; no behavior changes Review-Url: https://codereview.chromium.org/2277683002 Cr-Commit-Position: refs/heads/master@{#414247}
-
michaelpg authored
Remove the sub-page. Add a simple dialog to select new languages. Add an option to the language list to remove a language. A search box will be added to the dialog next. BUG=630982 TEST=SettingsLanguagesPageBrowserTest R=stevenjb@chromium.org CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:closure_compilation Review-Url: https://codereview.chromium.org/2265253002 Cr-Commit-Position: refs/heads/master@{#414246}
-
kmarshall authored
This seam allows us to reuse our existing network connection factories for hypothetical future non-BlimpConnection connection objects. Also modified/rewrote existing unit tests to accommodate new API. R=wez@chromium.org,lethalantidote@chromium.org BUG=635711 Review-Url: https://codereview.chromium.org/2236093002 Cr-Commit-Position: refs/heads/master@{#414245}
-
mohsen authored
Revert of DevTools: merge devtools target with devtools host, part 1 (patchset #11 id:200001 of https://codereview.chromium.org/2263843002/ ) Reason for revert: Caused compile errors on Linux ChromiumOS GN: https://build.chromium.org/p/chromium.chromiumos/builders/Linux%20ChromiumOS%20GN/builds/44628 Original issue's description: > DevTools: merge devtools target with devtools host, part 1 > > BUG=627517 > TBR= > > CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:closure_compilation > > Committed: https://crrev.com/fcf3423ed3619dcf8005510650ea5c31ea995f79 > Cr-Commit-Position: refs/heads/master@{#414208} TBR=dgozman@chromium.org,asargent@chromium.org,skyostil@chromium.org,pfeldman@chromium.org # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=627517 Review-Url: https://codereview.chromium.org/2277473007 Cr-Commit-Position: refs/heads/master@{#414244}
-
felt authored
BUG=639166 Review-Url: https://codereview.chromium.org/2257173005 Cr-Commit-Position: refs/heads/master@{#414243}
-
dtseng authored
While the backing Blink implementation gets further fleshed out, loosen ChromeVox's output of active descendants by reading it on children change events. The change makes it so that active descendants are read out when: - the focused node (node with state focused), has an active descendant - the incoming event is either children changed or active descendant changed TEST=drive.google.com; tab to one of the popup buttons; up/down arrow reads options. Review-Url: https://codereview.chromium.org/2273133002 Cr-Commit-Position: refs/heads/master@{#414242}
-
dgozman authored
Moving most of Schema, Runtime, Debugger, Profiler and Emulation out of experimental. BUG=635947 Review-Url: https://codereview.chromium.org/2272503002 Cr-Commit-Position: refs/heads/master@{#414241}
-
jdufault authored
BUG=640828 Review-Url: https://codereview.chromium.org/2272223002 Cr-Commit-Position: refs/heads/master@{#414240}
-
jaydasika authored
And use it to update filter animations directly instead of routing the updates through layers. BUG=638297 CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel Review-Url: https://codereview.chromium.org/2270273002 Cr-Commit-Position: refs/heads/master@{#414239}
-
vmpstr authored
BUG=638744 R=kbr@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 NOTRY=true Review-Url: https://codereview.chromium.org/2276123002 Cr-Commit-Position: refs/heads/master@{#414238}
-
pdfium-deps-roller authored
https://pdfium.googlesource.com/pdfium.git/+log/63af2c64b4ea..156de02596e9 $ git log 63af2c64b..156de0259 --date=short --no-merges --format='%ad %ae %s' 2016-08-24 dsinclair Removing CPDF_Parser::CloseParser. 2016-08-24 dsinclair Cleanup some PWL_FontMap methods 2016-08-24 npm Allow CPDF_Font to use fallback fonts 2016-08-24 dsinclair Flip document and parser ownership 2016-08-24 tonikitoo Lazy generate an "AP" when an Annot's hidden state changes 2016-08-24 dsinclair Move parser out of IndirectObjectHolder TBR=dsinclair@chromium.org Review-Url: https://codereview.chromium.org/2276193002 Cr-Commit-Position: refs/heads/master@{#414237}
-
drcrash authored
See go/zero-touch-chrome for design. (The author hasn't updated the name of the protos, but the document explains the signed request.) BUG=624187 TEST=unit tests Review-Url: https://codereview.chromium.org/2261763002 Cr-Commit-Position: refs/heads/master@{#414236}
-
engedy authored
A sentinel file is placed in the ruleset version directory just before indexing commences, and removed afterwards. Therefore, if a sentinel file is found on next start-up, it is an indication that the previous indexing operation may have crashed, and indexing will not be attempted again. This CL also slightly refactors unit tests so that we no longer have specific tests verifying histograms values, but instead we have tests exercising error scenarios, and verifying histogram values is performed as part of that. TBR=rkaplow@chromium.org BUG=609747 Review-Url: https://codereview.chromium.org/2272593002 Cr-Commit-Position: refs/heads/master@{#414235}
-
haraken authored
As discussed in blink-dev@ (https://groups.google.com/a/chromium.org/d/topic/blink-dev/kk4VX0xRB7I/discussion) and platform-architecture-dev@ (https://groups.google.com/a/chromium.org/d/topic/platform-architecture-dev/Zc12k91NTFk/discussion), there is no reason we have to shut down the renderer gracefully. It's just causing use-after-free bugs and wasting performance. This CL stops calling blink::shutdown in content/ tests. BUG=639244 Review-Url: https://codereview.chromium.org/2268283004 Cr-Commit-Position: refs/heads/master@{#414234}
-
thomasanderson authored
Pull package lists from both trusty and trusty-updates, and give precedence to the packages in trusty-updates when deciding which packages to add to the sysroot. BUG=638394 Review-Url: https://codereview.chromium.org/2270253002 Cr-Commit-Position: refs/heads/master@{#414233}
-
haraken authored
The checks were added in https://codereview.chromium.org/2163683004/ but are no longer needed because I already removed blink::shutdown from the renderer's shutdown sequence. BUG=628999 Review-Url: https://codereview.chromium.org/2271953002 Cr-Commit-Position: refs/heads/master@{#414232}
-
erikchen authored
These metrics provide more granular information about the CPU usage of chrome for performance benchmarks. BUG=640054 Review-Url: https://codereview.chromium.org/2270093002 Cr-Commit-Position: refs/heads/master@{#414231}
-
yuweih authored
For some reason the toolbar title text size is not font scale dependent. Increasing the font size in Accessibility->Font Size will change the text size everywhere except the app title. This CL fixes this problem by defining the title text size explicitly in sp. BUG=635584 Review-Url: https://codereview.chromium.org/2270283003 Cr-Commit-Position: refs/heads/master@{#414230}
-