- 25 Aug, 2016 40 commits
-
-
sgurun authored
When multiprocess is enabled for webview, do not initialize gesture configuration in renderer process as this eventually leads to accessing Window Manager Service. BUG=640379 Bug: b/31045266 Review-Url: https://codereview.chromium.org/2272703008 Cr-Commit-Position: refs/heads/master@{#414445}
-
torne authored
Add a move constructor and move assignment operator to local, global and weak references to reduce reference churn (saves a small number of bytes). Allow weak references to be constructed from JavaRef. Replace NULL with nullptr in jni_weak_ref code. BUG= Review-Url: https://codereview.chromium.org/2268553002 Cr-Commit-Position: refs/heads/master@{#414444}
-
sfiera authored
BUG=633613 Review-Url: https://codereview.chromium.org/2255783002 Cr-Commit-Position: refs/heads/master@{#414443}
-
fdoray authored
This Cl removes most calls to these methods on Windows and Linux: - MessageLoop::PostTask - MessageLoop::PostDelayedTask - MessageLoop::ReleaseSoon - MessageLoop::DeleteSoon - MessageLoop::Run - MessageLoop::RunUntilIdle Also note that calls to thread->message_loop()->task_runner() have been replaced with thread->task_runner() (|thread| is a base::Thread). This CL was generated by running the clang-tidy checks available here https://crbug.com/616447#c153 on Windows and Mac and by applying a few manual fixes (e.g. to remove a call made from a macro in audio_low_latency_input_win_unittest.cc). BUG=616447 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_site_isolation Review-Url: https://codereview.chromium.org/2211473003 Cr-Commit-Position: refs/heads/master@{#414442}
-
johnme authored
Revert of Fix ImageLoader::m_hasPendingLoadEvent/m_imageComplete in ImageDocument (patchset #4 id:60001 of https://codereview.chromium.org/2208073004/ ) Reason for revert: Reverting since http/tests/images/png-partial-load-as-document.html consistently leaks on WebKit Linux Leak and LeakExpectations says "Sheriff is expected to revert culprit CLs instead of suppressing the leaks" https://test-results.appspot.com/dashboards/flakiness_dashboard.html#tests=http%2Ftests%2Fimages%2Fpng-partial-load-as-document.html&testType=webkit_tests Original issue's description: > Fix ImageLoader::m_hasPendingLoadEvent/m_imageComplete in ImageDocument > > Case 1: When a image is loaded as a subresource, loading is stared by > ImageResource::fetch() in ImageLoader::doUpdateFromElement(). > Case 2: When a image is loaded as a main document, the start of the loading is > emulated by setImage() in ImageLoader::updateFromElement() and > ImageDocumentParser will do the subsequent loading steps. > > However in Case 2, |m_hasPendingLoadEvent| is set to false > (in setImageWithoutConsideringPendingLoadEvent()), causing |imageStillLoading| > to be false and ensureFallbackContent() to be called in > HTMLImageElement::selectSourceURL(), and thus a box indicating a broken image > is displayed during loading instead of the image displayed progressively. > This is regression since https://codereview.chromium.org/1879793003. > > This CL makes the behavior of Case 1 and 2 consistent, by moving what is done > in Case 1 to setImagePending(), and makes Case 1 and 2 both to call > setImagePending(). > > This CL also adds a layout test to confirm that an image is displayed > progressively when loaded as a main document. > > BUG=632495 > > Committed: https://crrev.com/576c7a048bfc30faf510eeda07f303fa9dd12898 > Cr-Commit-Position: refs/heads/master@{#414008} TBR=japhet@chromium.org,yhirano@chromium.org,hiroshige@chromium.org NOTRY=true NOTREECHECKS=true BUG=632495 Review-Url: https://codereview.chromium.org/2278953002 Cr-Commit-Position: refs/heads/master@{#414441}
-
mhs authored
BUG=611672 Review-Url: https://codereview.chromium.org/2269633002 Cr-Commit-Position: refs/heads/master@{#414440}
-
rmcilroy authored
Adds CodeAndMetadata measurements to the v8_browsing telemetry benchmarks. Modifes the memory dumper to dump these stats on light dumps, if requested. Also adds an Ignition variant for v8_browsing benchmarks. BUG=v8:4280,v8:5019 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.perf:android_s5_perf_cq;master.tryserver.chromium.perf:linux_perf_cq;master.tryserver.chromium.perf:mac_retina_perf_cq; Review-Url: https://codereview.chromium.org/2257173003 Cr-Commit-Position: refs/heads/master@{#414439}
-
mcasas authored
Cleanup: PhotoCapabilities is starting to have too many parameters, so this CL adds a builder for it. BUG=518807 Review-Url: https://codereview.chromium.org/2272653004 Cr-Commit-Position: refs/heads/master@{#414438}
-
fdoray authored
BUG=451546 Review-Url: https://codereview.chromium.org/2273103002 Cr-Commit-Position: refs/heads/master@{#414437}
-
cfroussios authored
The tests reflect the changes in https://codereview.chromium.org/2264163002 Review-Url: https://codereview.chromium.org/2268073007 Cr-Commit-Position: refs/heads/master@{#414436}
-
robert.bradford authored
Extend the GPU workaround exception list to enable CMAA on all Broadwell and Braswell GPUs. Using CMAA in place of MSAA for WebGL gives a performance benefit. BUG=535198 TEST=Boot cyan and observe that workaround is no longer listed. 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/2165553002 Cr-Commit-Position: refs/heads/master@{#414435}
-
kojii authored
This patch fixes ScriptCustomElementDefinition::createElementSync to create an element with its ownerDocument set to the given document by using the construction stack. Before this fix, V8HTMLElement::constructorCustom assumed it matches to window.document. The assumption does not stand when custom elements are created in import documents. BUG=640465 Review-Url: https://codereview.chromium.org/2274883005 Cr-Commit-Position: refs/heads/master@{#414434}
-
johnme authored
BackgroundTracingManagerBrowserTest.CrashWhenSubprocessWithoutArgumentFilter is flaky on android. It failed at builds [30767, 30786, 30834, 30835, 30843, 30851, 30868, 30909, 30910, 30919, 30923] of https://build.chromium.org/p/chromium.linux/builders/Android%20Tests amongst other failures. NOTREECHECKS=true NOTRY=true BUG=639706 TBR=simonhatch@chromium.org Review-Url: https://codereview.chromium.org/2272293003 Cr-Commit-Position: refs/heads/master@{#414433}
-
catapult-deps-roller authored
https://chromium.googlesource.com/external/github.com/catapult-project/catapult.git/+log/06af1137071d..b5763ff333c8 $ git log 06af11370..b5763ff33 --date=short --no-merges --format='%ad %ae %s' 2016-08-25 ulan [Perf Impact] Make frame time discrepancy absolute. 2016-08-25 achuith Error message for guest login. 2016-08-25 ksakamoto Fix metrics_debugger_app after moving MRE to tracing 2016-08-24 aiolos Revert of Update chrome ref builds (patchset #1 id:1 of https://codereview.chromium.org/2264243002/ ) 2016-08-24 eakuefner [Results2] Fix results2.html 2016-08-24 aiolos Update the Chrome Stable channel reference builds. 2016-08-24 nednguyen [tracing] Fix implementation of TTI when new nav is detected 2016-08-24 benjhayden Migrate sampleMetric from ScalarNumeric to Histogram BUG=631640,630300 TBR=catapult-sheriff@chromium.org Review-Url: https://codereview.chromium.org/2275283002 Cr-Commit-Position: refs/heads/master@{#414432}
-
skyostil authored
When generating C++ bindings, ensure all commands have a method which takes a full parameters object and returns a return value object. This ensures the API for experimental commands is retained even if that command is made stable. BUG=640919 Review-Url: https://codereview.chromium.org/2278123002 Cr-Commit-Position: refs/heads/master@{#414431}
-
Nico Weber authored
It's been on by default for a long time. BUG=441916 R=dcheng@chromium.org Review URL: https://codereview.chromium.org/2267713003 . Committed: https://crrev.com/bbf42267e353275827a33ca603e3dba48b81814f Cr-Original-Commit-Position: refs/heads/master@{#413546} Cr-Commit-Position: refs/heads/master@{#414430}
-
alokp authored
BUG=617633 Review-Url: https://codereview.chromium.org/2280673002 Cr-Commit-Position: refs/heads/master@{#414429}
-
sfiera authored
It seems that the server currently has logic to not send back excluded IDs, but lacks the logic needed to request more. Still, that's something that can be improved in the server later. There should be tests for NTPSnippetsService to verify the new behavior, but that's not possible until it uses the new server. BUG=633613 Review-Url: https://codereview.chromium.org/2274953002 Cr-Commit-Position: refs/heads/master@{#414428}
-
horo authored
So that we can shut down any shared workers that are no longer referenced by active documents without waiting for DocumentDetached IPC message. This will fix the race condition reported in https://crbug.com/636377#c11 BUG=639193 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_site_isolation Review-Url: https://codereview.chromium.org/2249173003 Cr-Commit-Position: refs/heads/master@{#414427}
-
loyso authored
CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel Review-Url: https://codereview.chromium.org/2275873002 Cr-Commit-Position: refs/heads/master@{#414426}
-
tasak authored
- implement prepareToSuspend for background renderer's purge + suspend. prepareToSuspend is invoked before a background renderer is suspended. - intent-to-implement-and-ship of background renderer's purge + suspend is https://groups.google.com/a/chromium.org/forum/#!topic/blink-dev/DK189tnM8l4 - one of the documents attached in the above intent is https://docs.google.com/document/d/1EgLimgxWK5DGhptnNVbEGSvVn6Q609ZJaBkLjEPRJvI/edit?usp=sharing BUG=635419 Review-Url: https://codereview.chromium.org/2249373002 Cr-Commit-Position: refs/heads/master@{#414425}
-
tzik authored
* Remove Unwrap call, which is no longer needed after http://crrev.com/2268283002 * Use Perfect Forwarding on Dispatch{Function,Method} Review-Url: https://codereview.chromium.org/2270693003 Cr-Commit-Position: refs/heads/master@{#414424}
-
hiroshige authored
Previously, all clients (except for awaiting ones) and observers are marked finished just after checkNotify() is called. However, it is possible that we have clients in |m_client| newly added during ResourceClient::notifyFinished(), and such new clients shouldn't be marked finished without calling notifyFinished(). This CL marks a client/observer just before notifyFinished()/ imageNotifyFinished() is called for the client/observer, and removes markClientsAndObserversFinished() methods. This CL also introduces MarkFinishedOption for checkNotify() for multipart images: In multipart images we call notifyFinished()/imageNotifyFinished() without marking clients/observers finished when the first part ends. BUG=633696 Review-Url: https://codereview.chromium.org/2210473002 Cr-Commit-Position: refs/heads/master@{#414423}
-
hiroshige authored
Revert of Rebaseline: Mark png-partial-load-as-document.html as leaky (patchset #1 id:1 of https://codereview.chromium.org/2275213002/ ) Reason for revert: The CL that introduced the test is to be reverted in https://codereview.chromium.org/2278953002/. Original issue's description: > Rebaseline: Mark png-partial-load-as-document.html as leaky > > TBR=hiroshige@chromium.org > BUG=640886 > NOTRY=true > > Committed: https://crrev.com/832983d0321d6d9e821b71e12ca1585354ece470 > Cr-Commit-Position: refs/heads/master@{#414338} TBR=haraken@chromium.org # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=640886 Review-Url: https://codereview.chromium.org/2271583007 Cr-Commit-Position: refs/heads/master@{#414422}
-
johnme authored
Failed on builds 7051 7024 7022 7021 7000 6988 of https://build.chromium.org/p/chromium.webkit/builders/WebKit%20Win7%20%28dbg%29 Also failed on many linux builds and at least one Mac build: https://test-results.appspot.com/dashboards/flakiness_dashboard.html#tests=virtual%2Fthreaded%2Fanimations%2Fdisplay-inline-style-adjust.html BUG=638693 NOTRY=true NOTREECHECKS=true TBR=alancutter@chromium.org Review-Url: https://codereview.chromium.org/2278153002 Cr-Commit-Position: refs/heads/master@{#414421}
-
glider authored
BUG=640185 TBR=dpranke@chromium.org NOTRY=true Review-Url: https://codereview.chromium.org/2278113002 Cr-Commit-Position: refs/heads/master@{#414420}
-
bauerb authored
Review-Url: https://codereview.chromium.org/2262883002 Cr-Commit-Position: refs/heads/master@{#414419}
-
johnme authored
Failed on the following builds, amongst others: 7052 7040 7035 7031 7024 7023 6993 6988 6974 Bot: https://build.chromium.org/p/chromium.webkit/builders/WebKit%20Win7%20%28dbg%29?numbuilds=200 BUG=640947 TBR=mek@chromium.org NOTRY=true NOTREECHECKS=true Review-Url: https://codereview.chromium.org/2278133002 Cr-Commit-Position: refs/heads/master@{#414418}
-
stkhapugin authored
Converts files located in ios/web/net. Removes property_releaser usage. Includes results of ARCMigrate run. Replaces WeakNSObjects with __weak variables. Inserts compile guards. Additionaly, renames ivars from trailing underscore to leading. BUG=624365 TEST=None Review-Url: https://codereview.chromium.org/2247303009 Cr-Commit-Position: refs/heads/master@{#414417}
-
hablich authored
This is a roll-back to 5.4.500.1. This is the most stable candidate out of the latest Canaries. If this commit results in failures in Blink please contact the Blink sheriff. They may need to make changes to Blink because of the roll-back. When in doubt please try to contact the committer and reviewers of this CL before reverting it. NOTRY because of flaky bots. CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel;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 TBR=machenbach@chromium.org,littledan@chromium.org,vogelheim@chromium.org NOTRY=true Review-Url: https://codereview.chromium.org/2272413002 Cr-Commit-Position: refs/heads/master@{#414416}
-
pke authored
Create the articles provider (NTPSnippetsService) and the BookmarkSuggestionsProvider in the IOSChromeContentSuggestionsServiceFactory and register them with the ContentSuggestionsService. This makes the IOSChromeContentSuggestionsServiceFactory equivalent to the ContentSuggestionsServiceFactory again (apart from the OfflinePageSuggestionsProvider, which is Android-only). BUG=633139 Review-Url: https://codereview.chromium.org/2232473002 Cr-Commit-Position: refs/heads/master@{#414415}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/b4f9789f..5b52c69a Please follow these instructions for assigning/CC'ing issues: https://github.com/v8/v8/wiki/Triaging%20issues Please close rolling in case of a roll revert: https://v8-roll.appspot.com/ This only works with a Google account. CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel;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 TBR=hablich@chromium.org,machenbach@chromium.org,littledan@chromium.org,vogelheim@chromium.org Review-Url: https://codereview.chromium.org/2279753002 Cr-Commit-Position: refs/heads/master@{#414414}
-
kraynov authored
Added wrapper namespace for unit tests to avoid name collisions with official protobuf. Tiny varint support in ProtoZeroMessage. Added tests to check conformance with the official protobuf. BUG=608721 Review-Url: https://codereview.chromium.org/2240043004 Cr-Commit-Position: refs/heads/master@{#414413}
-
vasilii authored
This is essentially launching the smart password bubble unless the server config overwrites the value. BUG=618312 Review-Url: https://codereview.chromium.org/2278093003 Cr-Commit-Position: refs/heads/master@{#414412}
-
johnme authored
Revert of Move scaling of ui resources for scrollbars to the time of upload (patchset #1 id:1 of https://codereview.chromium.org/2280663002/ ) Reason for revert: Sorry about the spam. Re-reverting now that https://codereview.chromium.org/2282433002 which depends on this patch has been reverted. Original issue's description: > Reland of Move scaling of ui resources for scrollbars to the time of upload (patchset #1 id:1 of https://codereview.chromium.org/2278083002/ ) > > Reason for revert: > Reverting this broke compile: > > cc/layers/painted_scrollbar_layer.cc:83:29: error: no member named 'GetRendererCapabilities' in 'cc::LayerTreeHost' > return layer_tree_host()->GetRendererCapabilities().max_texture_size; > ~~~~~~~~~~~~~~~~~ ^ > > Original issue's description: > > Revert of Move scaling of ui resources for scrollbars to the time of upload (patchset #6 id:100001 of https://codereview.chromium.org/2276633003/ ) > > > > Reason for revert: > > Sorry, seems to have caused LayerTreeHostScrollbarsPixelTest.HugeTransformScale to fail on Mac10.10 Tests, Mac10.11 Tests, Win 7 Tests x64 (1), Win10 Tests x64, Mac10.9 Tests and Linux Tests, with failures like: > > > > [8034:1287:0825/033725:3059591139598:ERROR:pixel_comparator.cc(50)] Number of pixel with an error: 672 > > [8034:1287:0825/033725:3059591187709:ERROR:pixel_comparator.cc(51)] Error Bounding Box : 0,304 368x66 > > [8034:1287:0825/033725:3059610880597:ERROR:pixel_test_utils.cc(79)] Pixels do not match! > > [8034:1287:0825/033725:3059610905829:ERROR:pixel_test_utils.cc(80)] Actual: data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAZAAAAGQCAYAAACAvzbMAAAF4ElEQVR4nO3ZQY1CQRRFwccEUWhhgQEMYAED7FGDKtJsxsCcTYdMVQt4d3eS/w9rrTUAX+g+97nNbfeMbS5zmec8t93/2XYZgK8mIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAcnzMY/cGgOQ1r90T/rXjda67NwDwhXzCAiAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREACS43nOuzcAEJzmtPX+4b3ea+sCAJLD79t2f60lIAD8mX8gACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJAICQCIgACQCAkAiIAAkAgJAIiAAJB9NHxfMgTV5VwAAAABJRU5ErkJggg== > > [8034:1287:0825/033725:3059610929427:ERROR:pixel_test_utils.cc(81)] Expected: data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAZAAAAGQCAYAAACAvzbMAAAF4klEQVR4nO3ZQY1CQRRFwfcJotDCYhQgAAsIQABqMEXSo2HOpkOmysC7u5N0H2utNQBf6DGPuc9994xtfuZnXvPadv+07TIAX01AAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIDk/Jzn7g0AyXveuyf8a+fb3HZvAOALecICIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQABIBASAREAASAQEgERAAEgEBIBEQAJLzda67NwAQXOay9f7xWZ+1dQEAyWlOc8yx7f6x1hIQAP7MHwgAiYAAkAgIAImAAJAICACJgACQCAgAiYAAkAgIAImAAJAICACJgACQCAgAiYAAkAgIAImAAJAICACJgACQCAgAiYAAkAgIAImAAJAICACJgACQCAgAiYAAkAgIAImAAJAICADJLzUdF8xyVTjQAAAAAElFTkSuQmCC > > ../../cc/test/layer_tree_pixel_test.cc:124: Failure > > Value of: MatchesPNGFile(*result_bitmap_, ref_file_path, *pixel_comparator_) > > Actual: false > > Expected: true > > > > Original issue's description: > > > Move scaling of ui resources for scrollbars to the time of upload > > > > > > Instead of trying to figure out what the max texture size is on the > > > main thread, and scale raster to meet that, just raster freely. Then > > > when uploading the UIResource to a texture, we can easily tell what > > > the max texture size is, and if the UIResource is too large, scale it > > > down to fit in a texture. > > > > > > R=enne > > > BUG=606056 > > > CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel > > > NOTRY=true > > > > > > Committed: https://crrev.com/941e52edd1522f7c3935aa4f4d763c43578b4944 > > > Cr-Commit-Position: refs/heads/master@{#414202} > > > > TBR=enne@chromium.org,danakj@chromium.org > > # Skipping CQ checks because original CL landed less than 1 days ago. > > NOPRESUBMIT=true > > NOTREECHECKS=true > > NOTRY=true > > BUG=606056 > > > > Committed: https://crrev.com/706757873f077fcf245c8e4054a5dfd8424d5ed2 > > Cr-Commit-Position: refs/heads/master@{#414391} > > TBR=enne@chromium.org,danakj@chromium.org > # Skipping CQ checks because original CL landed less than 1 days ago. > NOPRESUBMIT=true > NOTREECHECKS=true > NOTRY=true > BUG=606056 > > Committed: https://crrev.com/f56ab5d893d9c1ff735136d8df7d738b16634a7a > Cr-Commit-Position: refs/heads/master@{#414394} TBR=enne@chromium.org,danakj@chromium.org # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=606056 Review-Url: https://codereview.chromium.org/2282443002 Cr-Commit-Position: refs/heads/master@{#414411}
-
blundell authored
These tests fail due to WebFrameClient having a difference sequence of callbacks, which is itself due to the fact that in PlzNavigate, the navigation failure is detected in the browser. BUG=640631 Review-Url: https://codereview.chromium.org/2278563002 Cr-Commit-Position: refs/heads/master@{#414410}
-
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). More info is at https://goo.gl/zkKdpD. Use https://goo.gl/noib3a to file a bug (or complain) build: https://crrev.com/8009c7dfc942b4feddfc631d8764e508824b6756 Roll recipe dependencies (trivial). (recipe-roller@chromium.org) depot_tools: https://crrev.com/f8757b7e02226594655230ccbeae3543c7dc49c6 gclient: kill git fetch operation that hangs. (tandrii@chromium.org) TBR=martiniss@chromium.org,phajdan.jr@chromium.org BUG=635641 Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Review-Url: https://codereview.chromium.org/2273313002 Cr-Commit-Position: refs/heads/master@{#414409}
-
johnme authored
Revert of cc: Delete all the RendererCapabilities. (patchset #2 id:20001 of https://codereview.chromium.org/2267263002/ ) Reason for revert: This patch prevents reverting https://codereview.chromium.org/2280663002 Original issue's description: > cc: Delete all the RendererCapabilities. > > The one left that gets used is max_texture_size, for scrollbars. Since > painted scrollbars only happen on desktop, and we just make them blurry > if they exceed the max size, we just hardcode a limit of 2048 which > should be supported on any desktop device (it's guaranteed by DirectX9) > and we're fine with scrollbars becoming less than pixel-perfect if you > pinch zoom in and they become larger than max-texture-size anyhow. > > Everything else is unused or already deleted, so kill the structures > and the thread/ipc messages related to them. > > R=enne > BUG=606056 > CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel > > Committed: https://crrev.com/6484c37f7b2cfcaed90cc8a37677c670a75be023 > Cr-Commit-Position: refs/heads/master@{#414212} TBR=enne@chromium.org,danakj@chromium.org # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=606056 Review-Url: https://codereview.chromium.org/2282433002 Cr-Commit-Position: refs/heads/master@{#414408}
-
treib authored
BUG=none Review-Url: https://codereview.chromium.org/2277223002 Cr-Commit-Position: refs/heads/master@{#414407}
-
droger authored
NoState Prefetch design doc: https://docs.google.com/document/d/16VCYGGWau483IMSxODpg5faZny1FJ6vNK2v-BuM5EhU This CL is the first step for NoState Prefetch implementation in the renderer. The code added in this CL is not called yet (it will be called only when the PREFETCH_ONLY enum is sent through IPC). The prefetching is implemented in the HTMLDocumentParser. When prefetching, the parser runs in single-thread mode. When feeded with HTML input, it runs the preload scanner on it, and stops without actually building or executing the page. BUG=632361 Review-Url: https://codereview.chromium.org/2172613002 Cr-Commit-Position: refs/heads/master@{#414406}
-