- 31 Aug, 2016 40 commits
-
-
mef authored
BUG=632460 Review-Url: https://codereview.chromium.org/2206283003 Cr-Commit-Position: refs/heads/master@{#415662}
-
yhirano authored
Use std::move and delete unnecessary functions. BUG=None Review-Url: https://codereview.chromium.org/2292203003 Cr-Commit-Position: refs/heads/master@{#415661}
-
torne authored
Update code in net to use JavaRef when calling Java methods via JNI, instead of passing bare jobject. Various function parameter types are converted from jobject to JavaRef to enable calls to obj() higher up the call chain to be removed. BUG=506850 Review-Url: https://codereview.chromium.org/2301553002 Cr-Commit-Position: refs/heads/master@{#415660}
-
yukishiino authored
ExceptionStatePlaceholer was out-dated. This CL updates it according to the latest ExceptionState, adding throwRangeError and rethrowV8Exception. BUG= Review-Url: https://codereview.chromium.org/2298753002 Cr-Commit-Position: refs/heads/master@{#415659}
-
schenney authored
No change, just re-ordering. Really this time. TBR=chrishtr@chromium.org BUG=636475 Review-Url: https://codereview.chromium.org/2295213002 Cr-Commit-Position: refs/heads/master@{#415658}
-
kapishnikov authored
Review-Url: https://codereview.chromium.org/2267173003 Cr-Commit-Position: refs/heads/master@{#415657}
-
krb authored
Changes to show security level instead of EV cert and animate it away. Dangerous site levels are not animated. BUG=622531 Review-Url: https://codereview.chromium.org/2144903004 Cr-Commit-Position: refs/heads/master@{#415656}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/051fb8c6..3e5d344f 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/2301543003 Cr-Commit-Position: refs/heads/master@{#415655}
-
erikchen authored
The site in question is known to have high CPU usage, even though there appears to be no visual changes to the site. BUG=640398, 638365 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;master.tryserver.chromium.perf:winx64_10_perf_cq Review-Url: https://codereview.chromium.org/2271793003 Cr-Commit-Position: refs/heads/master@{#415654}
-
melandory authored
BUG=638963 Review-Url: https://codereview.chromium.org/2278043003 Cr-Commit-Position: refs/heads/master@{#415653}
-
pdfium-deps-roller authored
https://pdfium.googlesource.com/pdfium.git/+log/87dffc031547..21ce1a68bb9f $ git log 87dffc031..21ce1a68b --date=short --no-merges --format='%ad %ae %s' 2016-08-31 npm Update gn args in README so it includes is_component_build 2016-08-31 jaepark Use enum class for subtypes of CPDF_Annot. TBR=dsinclair@chromium.org Review-Url: https://codereview.chromium.org/2298763002 Cr-Commit-Position: refs/heads/master@{#415652}
-
cbruni authored
R=jochen@chromium.org BUG=chromium:630217 Review-Url: https://codereview.chromium.org/2236443002 Cr-Commit-Position: refs/heads/master@{#415651}
-
tommycli authored
Also updates the route from /siteSettings/plugins to /siteSettings/flash BUG=622922 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:closure_compilation Review-Url: https://codereview.chromium.org/2296983002 Cr-Commit-Position: refs/heads/master@{#415650}
-
skia-deps-roller authored
https://chromium.googlesource.com/skia.git/+log/272b311298d7..4bcd62e3313d $ git log 272b31129..4bcd62e33 --date=short --no-merges --format='%ad %ae %s' 2016-08-31 egdaniel Add some copy support for vulkan msaa CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel TBR=bsalomon@google.com Review-Url: https://codereview.chromium.org/2297203002 Cr-Commit-Position: refs/heads/master@{#415649}
-
fgorski authored
Revert of Filter out credentials with non-matching schemes (patchset #1 id:1 of https://codereview.chromium.org/2298733002/ ) Reason for revert: Patch is crashing tests on windows bots. https://build.chromium.org/p/chromium.win/builders/Win7%20Tests%20%28dbg%29%281%29/builds/52229 https://build.chromium.org/p/chromium.win/builders/Win7%20Tests%20%28dbg%29%281%29/builds/52229/steps/browser_tests%20on%20Windows-7-SP1/logs/AutofillEditAddressWebUITest.testFieldValuesSaved Original issue's description: > Filter out credentials with non-matching schemes > > PasswordFormManager::ProcessMatches currently happily accepts credentials from > PasswordStore with a different PasswordForm::Scheme than the observed form has. > However, it still has a DCHECK against it later (in the Autofill* methods), so > it is clearly not expecting these, rather than mixing the schemes being by > design. > > And it should not be by design. Especially, if the saved credential is a > non-HTML one, and should be filled in a HTML form. Mixing them makes the > non-HTML credential vulnerable against (injected attacker's) JavaScript > accessing them. > > This CL filters out credentials with non-matching scheme from the batch coming > from the PasswordStore. Given the absence of DCHECKs in release builds, this > actually changes the behaviour for Chrome users, but the change is a desired > one. > > BUG=640897 > > Committed: https://crrev.com/da597b2f777ea4ac768164bee01f39a90fba3c65 > Cr-Commit-Position: refs/heads/master@{#415622} TBR=mkwst@chromium.org,dvadym@chromium.org,vabr@chromium.org # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=640897 Review-Url: https://codereview.chromium.org/2298263002 Cr-Commit-Position: refs/heads/master@{#415648}
-
kojii authored
When there are multiple BidiRun in a line (multiple inline elements, whitespace collapsing, or RTL,) setLogicalWidthForTextRun has O(#BidiRun * #WordMeasurement), resulting similar characteristics as O(n!) for the line length. This patch fixes this for LTR. For RTL, we could improve up to log2(N) by using binary search, or better by using fast index for LineLayoutText for multiple elements case. It was once tried but removed due to its complexity, we can do it if they came up as real cases. Following performance tests are now 10-20x faster. The amount of text for these tests were increased by 12x, matching to long-line-nowrap.html. PerformanceTests/Layout/long-line-nowrap-collapse.html PerformanceTests/Layout/long-line-nowrap-spans-collapse.html BUG=583711, 642345 Review-Url: https://codereview.chromium.org/2285053002 Cr-Commit-Position: refs/heads/master@{#415647}
-
moshayedi authored
This CL: * Uses Mus' IMEServer to do the IME logic in InputMethodMus. * Adds unittests to test InputMethodMus. * Starts test_ime_driver on mus+ash session startup. * Modifies test_ime_driver to not-handle non character events. BUG=548407 Committed: https://crrev.com/aa4f90ab72b60fd90e048b1e18193c30f0462d77 Review-Url: https://codereview.chromium.org/2230393002 Cr-Original-Commit-Position: refs/heads/master@{#414748} Cr-Commit-Position: refs/heads/master@{#415646}
-
mstensho authored
Splitting scrollbars into multiple fragmentainers is only problematic in interactive media. We don't need to impose any such pagination restrictions when printing, since printing is non-interactive, BUG=641983 Review-Url: https://codereview.chromium.org/2298193002 Cr-Commit-Position: refs/heads/master@{#415645}
-
jwd authored
BUG= Review-Url: https://codereview.chromium.org/2292203004 Cr-Commit-Position: refs/heads/master@{#415644}
-
mmenke authored
Also add a group policy to allow HTTP/0.9 support on other ports, which I plan to remove in a couple revisions. BUG=624462,637017 Review-Url: https://codereview.chromium.org/2253653002 Cr-Commit-Position: refs/heads/master@{#415643}
-
dtrainor authored
Migrate the last two features (render widget and settings) from blimp/client/features to blimp/client/core. This required adding support for BlimpCompositorDependencies throughout blimp/client/core and exposing a CompositorDependencies class in the constructor of BlimpClientContext as well. BUG=611105 CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel Review-Url: https://codereview.chromium.org/2292723003 Cr-Commit-Position: refs/heads/master@{#415642}
-
catapult-deps-roller authored
https://chromium.googlesource.com/external/github.com/catapult-project/catapult.git/+log/fa2c4f21907f..aa7c58eb0459 $ git log fa2c4f219..aa7c58eb0 --date=short --no-merges --format='%ad %ae %s' 2016-08-31 perezju Revert of [devil] Use /data/local/tmp for the command line on eng + userdebug builds. (patchset #2 id:20001 of https://codereview.chromium.org/2275863002/ ) 2016-08-31 nednguyen Fix flakes in csv_pivot_table_output_formatter_unittest. BUG=640228,641497 TBR=catapult-sheriff@chromium.org Review-Url: https://codereview.chromium.org/2293973003 Cr-Commit-Position: refs/heads/master@{#415641}
-
zengster authored
Review-Url: https://codereview.chromium.org/2293923005 Cr-Commit-Position: refs/heads/master@{#415640}
-
dtapuska authored
It doesn't make sense to wait arbitrary for touch events that are blocking. So make them appear as non-continuous events. BUG=625693 Review-Url: https://codereview.chromium.org/2296693003 Cr-Commit-Position: refs/heads/master@{#415639}
-
mmoroz authored
Usage of 'chromeos_with_codecs' mixin, that adds target_os="chromeos", leads to loosing of 36 active and 3 disabled fuzzers. This CL doesn't lead to loosing of any fuzzers and also brings back those 36 and 3 fuzzers. R=aizatsky@chromium.org, dalecurtis@chromium.org, dpranke@chromium.org, inferno@chromium.org BUG=638935 Review-Url: https://codereview.chromium.org/2291123006 Cr-Commit-Position: refs/heads/master@{#415638}
-
pdfium-deps-roller authored
https://pdfium.googlesource.com/pdfium.git/+log/7e7ef3dd60a8..87dffc031547 $ git log 7e7ef3dd6..87dffc031 --date=short --no-merges --format='%ad %ae %s' 2016-08-31 dsinclair Free the GifPlainText object when complete. BUG=638499 TBR=dsinclair@chromium.org Review-Url: https://codereview.chromium.org/2296183002 Cr-Commit-Position: refs/heads/master@{#415637}
-
jonross authored
MenuButton rejects openning new menus when a reposted event arrives too close to the closing time of the menu. However this calculation was based on menus always being synchronous. Updating MenuButton to set the closed time based on the pressed state being decremented to 0. This works for both synchronous and async menus. TEST=manual testing of translate bubble, and other menu buttons, views_unittests BUG=642254 Review-Url: https://codereview.chromium.org/2299443002 Cr-Commit-Position: refs/heads/master@{#415636}
-
rob.buis authored
BUG=402536 Review-Url: https://codereview.chromium.org/2239303003 Cr-Commit-Position: refs/heads/master@{#415635}
-
csharrison authored
This patch adds initialization for blink fuzzers that need the full unit test environment, as well as a simple fuzzer for the CSS tokenizer + parser. BUG=642570,642572 Review-Url: https://codereview.chromium.org/2274563002 Cr-Commit-Position: refs/heads/master@{#415634}
-
mkwst authored
As discussed in https://github.com/w3c/webappsec-csp/issues/98, this patch prevents execution of script via a nonce if an attribute named "<script" or "<style" is present, or if an attribute's value contains "<script" or "<style". That is, given `script-src 'nonce-abc'`, the following will execute: <script nonce=abc> // yay </script> But the following will not: <script <script nonce=abc> // yay </script> <script attribute="<script" nonce=abc> // yay </script> <script <style nonce=abc> // yay </script> <script attribute="<style" nonce=abc> // yay </script> Let's see if this is web-compatible, shall we? This patch locks the new behavior behind the experimental flag, and adds metrics that should help us understand what the real-world impact would be. BUG=639293 Review-Url: https://codereview.chromium.org/2260103003 Cr-Commit-Position: refs/heads/master@{#415633}
-
ulan authored
Revert of [BotHealth] Disable v8.infinite_scroll benchmarks on Windows (patchset #1 id:1 of https://codereview.chromium.org/2256853002/ ) Reason for revert: Re-enabling the benchmarks since the failure does not reproduce locally at TOT. Original issue's description: > [BotHealth] Disable v8.infinite_scroll benchmarks on Windows > > BUG=638724 > 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;master.tryserver.chromium.perf:winx64_10_perf_cq > > Committed: https://crrev.com/11ba3bbd5819de5705c63a5c9df639bcbaa38c71 > Cr-Commit-Position: refs/heads/master@{#412704} TBR=fmeawad@chromium.org,eakuefner@chromium.org # Not skipping CQ checks because original CL landed more than 1 days ago. BUG=638724 Review-Url: https://codereview.chromium.org/2300613002 Cr-Commit-Position: refs/heads/master@{#415632}
-
rogerm authored
BUG=620414, 640669 Review-Url: https://codereview.chromium.org/2279543003 Cr-Commit-Position: refs/heads/master@{#415631}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/299d5acf..051fb8c6 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/2294223003 Cr-Commit-Position: refs/heads/master@{#415630}
-
boliu authored
Normal destroy already calls removeCallbacksAndMessages. This Cl covers when the CleanupReference runs before the java side is garbage collected. Add a test for this, and stop this test suite repeating since they are only unit tests. Review-Url: https://codereview.chromium.org/2292393002 Cr-Commit-Position: refs/heads/master@{#415629}
-
glebl authored
The rebaseline bot failed to rebase tests for https://crrev.com/409303 and only updated TestExpectations. This patch marks all those tests as NeedsManualRebaseline. BUG=642668 NOTRY=true Review-Url: https://codereview.chromium.org/2294293002 Cr-Commit-Position: refs/heads/master@{#415628}
-
battre authored
Revert of Disallow non-namespaced use of base::Version. (patchset #2 id:40001 of https://codereview.chromium.org/2261523006/ ) Reason for revert: Mac builders fail. See http://crbug.com/639416#c11 Original issue's description: > Disallow non-namespaced use of base::Version. > > BUG=639416 > > Committed: https://crrev.com/0de2231894d4289190b8661ae40f9a6cc29fc910 > Cr-Commit-Position: refs/heads/master@{#415626} TBR=thakis@chromium.org,pwnall@chromium.org # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=639416 Review-Url: https://codereview.chromium.org/2296703005 Cr-Commit-Position: refs/heads/master@{#415627}
-
pwnall authored
BUG=639416 Review-Url: https://codereview.chromium.org/2261523006 Cr-Commit-Position: refs/heads/master@{#415626}
-
nednguyen authored
This also update test_runner.pydeps to include changes to references to catapult_base directory. https://chromium.googlesource.com/external/github.com/catapult-project/catapult.git/+log/578e20909005..fa2c4f21907f $ git log 578e20909..fa2c4f219 --date=short --no-merges --format='%ad %ae %s' 2016-08-30 benjhayden Rename Histogram.add() to addSample(). 2016-08-30 benjhayden Replace ScalarNumerics with Histograms in value_set_test and value_set_table_test. 2016-08-30 ksakamoto Update FirstMeaningfulPaint to use Blink's implementation 2016-08-30 aiolos Revert of [polymer] - Sort series data before adding to legend. (patchset #1 id:1 of https://codereview.chromium.org/2233763003/ ) 2016-08-30 benjhayden Refactor NumericBuilder to HistogramBinBoundaries. 2016-08-30 fmeawad v8CallStats: Add a map between URL and known domain names 2016-08-30 eakuefner [Catapult] Update .gitignore to point to new locations in common/ 2016-08-30 washingtonp Pass in custom options to Systrace agents 2016-08-30 nednguyen [telemetry] Only disable trace profiler for TBM 2016-08-30 jbudorick [devil] Re-add the reset_usb import to unblock the catapult roll. 2016-08-30 fmeawad v8CallStats: Update the arg name 2016-08-30 benjhayden Migrate memoryMetric from ScalarNumerics to Histograms. 2016-08-30 nednguyen Remove catapult_base/ and move its files to common/py_utils/ BUG=638124, 642716 TBR=catapult-sheriff@chromium.org patch from issue 2298183003 at patchset 1 (http://crrev.com/2298183003#ps1) Review-Url: https://codereview.chromium.org/2300623002 Cr-Commit-Position: refs/heads/master@{#415625}
-
estevenson authored
Using gcc_compile_wrapper.py unconditionally is inefficient and makes debugging more difficult. This is problematic since resource whitelisting occurs relatively infrequently. BUG=642498 Review-Url: https://codereview.chromium.org/2296033002 Cr-Commit-Position: refs/heads/master@{#415624}
-
cathiechen authored
COMMAND_PREFIX and COMMAND_SUFFIX should be used simultaneously BUG= Review-Url: https://codereview.chromium.org/2295103002 Cr-Commit-Position: refs/heads/master@{#415623}
-