- 25 Mar, 2015 40 commits
-
-
https://codereview.chromium.org/1021393002/morrita authored
Reason for revert: This depends on https://codereview.chromium.org/1023043002, which was reverted. Original issue's description: > Re-enable ChannelMojo > > It was disabled due to crbug.com/466814 that is now fixed. > It's time to turn it on again. > > R=viettrungluu@chromium.org > BUG=466814,377980 > > Committed: https://crrev.com/c99c93842fa50f85888d069f0be962462f92a643 > Cr-Commit-Position: refs/heads/master@{#322092} TBR=viettrungluu@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=466814,377980 Review URL: https://codereview.chromium.org/1034753002 Cr-Commit-Position: refs/heads/master@{#322183}
-
qyearsley authored
Review URL: https://codereview.chromium.org/1028903002 Cr-Commit-Position: refs/heads/master@{#322182}
-
earthdok authored
BUG=none R=glider@chromium.org Review URL: https://codereview.chromium.org/1037763002 Cr-Commit-Position: refs/heads/master@{#322181}
-
mdjones authored
Diff since last roll: https://github.com/chromium/dom-distiller/compare/8c015c13ad...cc268ee730 Picked up changes: cc268ee Revert "Treat images as another type of embed" a7949c7 implement extraction of page parameters from potential pagination URLs 47c825f Add target "ant runtest" to run tests without recompiling 7a29e21 Fixes a crash when window.performance is not available. b7b4d4a Fixing python header. 1c2dd98 Revert "Disable flaky page link tests" 2a64c8d Use a much simpler baseUrl heuristics 3e49cf2 Fix flakiness due to a bug in createAnchorWithBase() d69f15d Allow multiple instances of "ant test" running d9fb022 Put steps in continuous integration into a bash script 94320fe Unify the style in Ant target descriptions 4adbcfa Don't let base tag change original_url a3a07ce Disable flaky page link tests 0b8c2e7 Treat images as another type of embed d49edaf Add pagenum difference in the next page heuristics abee435 Do not sum up scores of next page links with the same URL 0955aa3 Use numbers as a fast filter in next page detection ff4bc3d Fix relative link resolution with base tag 875b0ff Use URL prefix as a fast filter in next page detection 7b12bc7 Resolve links in a new HTML document with a base tag ab96c56 Add timing info for pagination 2812744 Add support for wrapping the standalone JavaScript. 7bd24c4 Groundwork for retaining popular embeds in results 4b3cdb9 Add instructions for using `git cl format`. 94c8270 Add project introduction in README.md 86983de Add support for running jstests on Mac OS X and add documentation. f33d992 Add JS tests to package and suppress log output. 1a42d14 Make the "test" target not depend on "package" eabc11d Add data tables to the WebDocument 669d605 Revert "Disable some tests in PagingLinksFinderTest" 2874c7b Fix the page URL in PagingLinksFinderTest ddc30e2 Fix next-page tests for new mocking mechanism BUG=431067,450813,455503,464143 Review URL: https://codereview.chromium.org/1029263006 Cr-Commit-Position: refs/heads/master@{#322180}
-
davidben authored
The old logic was difficult to follow with pointers and values switching from SSL_read return values to net return values. This new formulation should hopefully be clearer. BUG=none Review URL: https://codereview.chromium.org/1000813002 Cr-Commit-Position: refs/heads/master@{#322179}
-
davidben authored
Both socket implementations have client auth logic to remove a session from the session cache in case of client auth. In both cases, this doesn't do anything. The OpenSSL one was copied from the NSS one. It was always dead code and became a no-op when we stopped using the internal session cache (see https://crbug.com/466352). The NSS one dates to http://codereview.chromium.org/276037. At that time, we returned SECFailure rather than SECWouldBlock, so the handshake would continue and potentially poison the session cache. As of http://codereview.chromium.org/669198, this was no longer an issue. BUG=none Review URL: https://codereview.chromium.org/1013193004 Cr-Commit-Position: refs/heads/master@{#322178}
-
tfarina authored
range-based loops is one of the C++11 allowed features. See https://chromium-cpp.appspot.com/ and https://groups.google.com/a/chromium.org/forum/#!topic/chromium-dev/hpzz4EqbVmc. This patch was generated with the following command lines: $ ninja -C out/Debug -t compdb cxx > out/Debug/compile_commands.json $ cd out/Debug $ find ../../tools/gn -name '*.cc' | xargs -n 16 -P 32 \ ~/src/repos/llvm/build/bin/clang-modernize -loop-convert -p . -include \ tools/gn -format -style=Chromium $ ninja gn gn_unittests $ ./gn_unittests BUG=None TEST=gn && gn_unittests R=brettw@chromium.org Review URL: https://codereview.chromium.org/986113002 Cr-Commit-Position: refs/heads/master@{#322177}
-
avi authored
Move pending navigation parameters to RenderFrame, and use the HistoryController to distribute them to affected frames. BUG=369661 TEST=existing tests Review URL: https://codereview.chromium.org/1027863002 Cr-Commit-Position: refs/heads/master@{#322176}
-
reveman authored
Revert of content: Re-enable ChildDiscardableSharedMemoryManagerBrowserTest.LockMemory test. (patchset #1 id:1 of https://codereview.chromium.org/1033553003/) Reason for revert: Still flaky Original issue's description: > content: Re-enable ChildDiscardableSharedMemoryManagerBrowserTest.LockMemory test. > > BUG= > TEST=content_browsertests --gtest_filter=ChildDiscardableSharedMemoryManagerBrowserTest.LockMemory > > Committed: https://crrev.com/98e563846f88a2df7107e170381a6a5e8bd4454b > Cr-Commit-Position: refs/heads/master@{#322122} TBR=avi@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG= Review URL: https://codereview.chromium.org/1038703002 Cr-Commit-Position: refs/heads/master@{#322175}
-
rkaplow authored
This is related to https://codereview.chromium.org/1027693004/ and should be submitted before (although doesn't matter much). This obsoletes the unowned: Net.HttpSocketType Net.HttpConnectionLatency and removes writing to: Net.SocketIdleTimeBeforeNextUse_UnusedSocket Net.SocketIdleTimeBeforeNextUse_ReusedSocket which were made obsolete in https://codereview.chromium.org/1027693004/ Are any of these histograms being looked at? BUG=469288 Review URL: https://codereview.chromium.org/1025073002 Cr-Commit-Position: refs/heads/master@{#322174}
-
apacible authored
These will be used in the Media Router WebUI custom Polymer elements, which will be submitted in future patches. BUG=464222 Review URL: https://codereview.chromium.org/1029213002 Cr-Commit-Position: refs/heads/master@{#322173}
-
jdduke authored
Create a basic pageset that uses the newly supported fling interaction, paralleling the existing SimpleMobileSites pageset that uses smooth scrolling. This should allow basic comparisons between touch scrolling and fling performance. More stressful fling-related pages will be added in a separate set. BUG=321141 Review URL: https://codereview.chromium.org/1023763004 Cr-Commit-Position: refs/heads/master@{#322172}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/c7c9180..7a01184 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel TBR=hcm@google.com Review URL: https://codereview.chromium.org/1030173003 Cr-Commit-Position: refs/heads/master@{#322171}
-
boliu authored
Revert of [Android] Stop hiding the RWHV layer subtree when hiding the widget (patchset #10 id:270001 of https://codereview.chromium.org/1001573003/) Reason for revert: Breaks Android WebView which does not call ApplicationStatus.initialize Original issue's description: > [Android] Preserve the front buffer when the activity is paused > > Currently, when an activity is stopped, we explicitly hide the > foreground Tab. This is problematic, as current hiding semantics > might clear the visual front buffer before the window is hidden. > This in turn causes an unpleasant flickering during activity > transitions, e.g., when backgrounding Chrome or locking the screen. > > Wire Activity onPause/onResume notifications to WindowAndroidObservers, > allowing the foreground tab to preserve its front buffer while hiding > its web content. If the tab is explicitly hidden, or the root window > is lost, the front buffer will be cleared as usual. > > BUG=462752,434401 > > Committed: https://crrev.com/764f31d287a4995f0c89915745f5749e1c7063af > Cr-Commit-Position: refs/heads/master@{#322052} TBR=sievers@chromium.org,dtrainor@chromium.org,tedchoc@chromium.org,piman@chromium.org,torne@chromium.org,jdduke@chromium.org BUG=462752,434401 Review URL: https://codereview.chromium.org/1038573004 Cr-Commit-Position: refs/heads/master@{#322170}
-
mathp authored
A previous CL split the AutofillManager::OnFormSubmitted logic into OnWillSubmit and OnFormSubmitted to support AJAX forms. This change splits the logged events similarly and introduces AutofillMetrics::FormEventLogger::OnWillSubmitForm, which is logged anytime a form is about to be submitted. We move FormEventLogger::OnDidSubmitForm back into AutofillManager::OnFormSubmitted, since it more closely matches what happened before. We will use the extra "will submit" logged events to determine the proportion of submitted forms that are AJAX (don't end up calling OnFormSubmitted). BUG=460488 TEST=AutofillMetricsTest Review URL: https://codereview.chromium.org/1010263002 Cr-Commit-Position: refs/heads/master@{#322169}
-
Adam Langley authored
net: add (www.)healthcare.gov to HSTS preloaded. Cr-Commit-Position: refs/heads/master@{#322168}
-
edwardjung authored
BUG=462221 Review URL: https://codereview.chromium.org/977323003 Cr-Commit-Position: refs/heads/master@{#322167}
-
gunsch authored
R=phajdan.jr@chromium.org BUG=468335 Review URL: https://codereview.chromium.org/1026413003 Cr-Commit-Position: refs/heads/master@{#322166}
-
shess authored
Backport https://www.sqlite.org/src/info/eddc05e7bb31fae7 "Fix a problem causing collation sequence names to be dequoted multiple times under some circumstances." BUG=469082 Review URL: https://codereview.chromium.org/1022423004 Cr-Commit-Position: refs/heads/master@{#322165}
-
mlamouri authored
It allows us to forward declare it instead of including the file everywhere. BUG=437770 Review URL: https://codereview.chromium.org/1020683003 Cr-Commit-Position: refs/heads/master@{#322164}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/6b9ef90..c7c9180 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel TBR=hcm@google.com Review URL: https://codereview.chromium.org/1014723010 Cr-Commit-Position: refs/heads/master@{#322163}
-
avayvod authored
Removed PresentationSessionDispatcher since the session messages are going through the PresentationService (to reduce the number of Mojo pipes used). Depends on the Blink change: https://codereview.chromium.org/1020303004 BUG=459006 Review URL: https://codereview.chromium.org/1024903003 Cr-Commit-Position: refs/heads/master@{#322162}
-
huangs authored
This propagates the presence of IconNTP/Enabled to the local NTP, so we keep display old design and conditionally render (upcoming) new design. BUG=467712 Review URL: https://codereview.chromium.org/1020853012 Cr-Commit-Position: refs/heads/master@{#322161}
-
tommi authored
WebRTC 8852:8857 Changes: https://chromium.googlesource.com/external/webrtc/trunk/webrtc.git/+log/3918de6..edd91ff Libjingle 8851:8855 Changes: https://chromium.googlesource.com/external/webrtc/trunk/talk.git/+log/d3e61c0..bb52e6e TBR= BUG= Review URL: https://codereview.chromium.org/1036433003 Cr-Commit-Position: refs/heads/master@{#322160}
-
boliu authored
WebView creates a WindowAndroid class per AwContents, but never calls destroy on it, so the native WindowAndroid leaks. Do this in CleanupReference of AwContents. Also make native WindowAndroid hold a strong reference, so removes the requirement to null check the ref, which are mostly missing anyway. Notes: * This adds the requirement that WindowAndroid cannot hold strong ref that would prevent AwContents/ContentViewCore from being gc-ed, which currently is the case. * This does not address the issue that WindowAndroid should be per-activity, not per ContentViewCore. BUG=469803 Review URL: https://codereview.chromium.org/1034593002 Cr-Commit-Position: refs/heads/master@{#322159}
-
https://crrev.com/960493004mkwst authored
These broke Closure at http://build.chromium.org/p/chromium.fyi/builders/Closure%20Compilation%20Linux/builds/18644 BUG=461800 TBR=vasilii@chromium.org Review URL: https://codereview.chromium.org/1020863011 Cr-Commit-Position: refs/heads/master@{#322158}
-
huangs authored
The class used to be in components\favicon_base. The DEP changes arise due to movement of fallback icon drawing code. BUG=467712 Review URL: https://codereview.chromium.org/1032683002 Cr-Commit-Position: refs/heads/master@{#322157}
-
earthdok authored
BUG=468982 TBR=mtomasz@chromium.org Review URL: https://codereview.chromium.org/1019393004 Cr-Commit-Position: refs/heads/master@{#322156}
-
stuartmorgan authored
This upstreams the exising "third"-party HTML tokenizer used for network-level injection, which is used to find the insertion point for network JS injection. BUG=464810 Review URL: https://codereview.chromium.org/1031023002 Cr-Commit-Position: refs/heads/master@{#322155}
-
pneubeck authored
Revert of Roll src/third_party/WebKit 698efc0:7d47c95 (svn 192500:192506) (patchset #1 id:1 of https://codereview.chromium.org/1037703002/) Reason for revert: Broke compilation with GN: https://build.chromium.org/p/chromium.mac/builders/Mac%20GN%20%28dbg%29/builds/6697/steps/gn/logs/stdio caused by this Blink commit: https://chromium.googlesource.com/chromium/blink/+/7d47c95bc49510d29e36fc2895eef3e67706ef41 Original issue's description: > Roll src/third_party/WebKit 698efc0:7d47c95 (svn 192500:192506) > > Summary of changes available at: > https://chromium.googlesource.com/chromium/blink/+log/698efc0..7d47c95 > > TBR=jchaffraix@chromium.org > > Committed: https://crrev.com/60a49fc315e7eaed780da86aad1eecd40f149f70 > Cr-Commit-Position: refs/heads/master@{#322139} TBR=jchaffraix@chromium.org,blink-deps-roller@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true Review URL: https://codereview.chromium.org/1032603004 Cr-Commit-Position: refs/heads/master@{#322154}
-
Paweł Hajdan, Jr authored
This will help avoid buildbot killing it when no output is produced for too long (expected with xz -9 for a large file). BUG=433338 R=jochen@chromium.org Review URL: https://codereview.chromium.org/1037753002 Cr-Commit-Position: refs/heads/master@{#322153}
-
bokan authored
These benchmarks were crashing as a result of a style-related ASSERT. The offending CLs have been reverted (see bug) so I'm reenabling these. BUG=470071 TBR=rune@opera.com Review URL: https://codereview.chromium.org/1030183002 Cr-Commit-Position: refs/heads/master@{#322152}
-
rogerm authored
This version has been obsolete for longer than the 2 year deprecation window. Maintaining backwards support for this would greatly complicate schema migration and recovery in the transition to schema version 8, which adds support for tracking the last_requested time of a given icon bitmap. BUG=467712 Review URL: https://codereview.chromium.org/1010973011 Cr-Commit-Position: refs/heads/master@{#322151}
-
earthdok authored
I accidentally landed the wrong patchset. :( BUG=462636 TBR=glider@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/1004683003 Cr-Commit-Position: refs/heads/master@{#322150}
-
earthdok authored
BUG=462636 R=glider@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/1019213003 Cr-Commit-Position: refs/heads/master@{#322149}
-
alexst authored
This adds missing plumbing to single_thread_proxy to forward max pending frames from the surface to the compositor, but keeps max pending value the same for the time being. Currently the call to SetMaxSwapsPendingOnImplThread in layer_tree_host_impl.cc gets dropped on the floor for ChromeOS. Previously, driver implementation of eglSwapBuffers returned before page flip actually happened, allowing the browser compositor to start scheduling the next frame while the front buffer was still shown. With switch to freon, SwapBuffersACK is sent on page flip, affecting scheduler timing. This enables the browser compositor to queue up a new frame earlier when necessary. BUG=465599 Review URL: https://codereview.chromium.org/1011823005 Cr-Commit-Position: refs/heads/master@{#322148}
-
chrome-tpm authored
Cr-Commit-Position: refs/heads/master@{#322147}
-
mkwst authored
chrome://settings/passwords currently displays a blank input field for federated credentials. This patch adjusts things to support displaying the hostname of the federation with which the credential is bound. That is, it will display "via facebook.com" if you've signed into a website using Facebook, and saved that credential via the Credential Manager API. BUG=461800 R=vasilii@chromium.org Review URL: https://codereview.chromium.org/960493004 Cr-Commit-Position: refs/heads/master@{#322146}
-
earthdok authored
Widen a suppression and exclude two tests. BUG=470517, 470507, 463261 TBR=eugenis@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/1001843003 Cr-Commit-Position: refs/heads/master@{#322145}
-
alexclarke authored
Disabling this test will make a bot go green. See bug for details. BUG=470499 Review URL: https://codereview.chromium.org/1031943004 Cr-Commit-Position: refs/heads/master@{#322144}
-