- 25 Jul, 2016 40 commits
-
-
creis authored
It was never able to return false, which led to unnecessary error case handling. Removing the return value makes reasoning about invalid PageStates easier. BUG=568703 TEST=No behavior change. CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_site_isolation Review-Url: https://codereview.chromium.org/2181753002 Cr-Commit-Position: refs/heads/master@{#407552}
-
robhogan authored
https://crrev.com/59d3539fc7ce60355ccf52c00733d33dde5e118a stopped collapsing: LayoutBlockFlow (anonymous) at (0,0) LayoutBlockFlow (anonymous) at (0,0) LayoutInline {SPAN} at (0,0) to LayoutBlockFlow (anonymous) at (0,0) LayoutInline {SPAN} at (0,0) Reinstate that behaviour! BUG=627149 Review-Url: https://codereview.chromium.org/2176043002 Cr-Commit-Position: refs/heads/master@{#407551}
-
agrieve authored
We were tracking size-within-apk, and size-within-apk+extracted size, but it's also useful to track uncompressed size for things like the native library & dex file. BUG=none Review-Url: https://codereview.chromium.org/2172303002 Cr-Commit-Position: refs/heads/master@{#407550}
-
mmenke authored
We were using HexStringToInt to parse chunk size, which returns a 32-bit int. This CL switches to using HexStringToInt64, which uses 64-bit ints, so we can now support chunks up to 2^63-1 bytes. That should be enough for anybody. [Cue dramatic music] BUG=630680 Review-Url: https://codereview.chromium.org/2170133004 Cr-Commit-Position: refs/heads/master@{#407549}
-
agrieve authored
Previous change: https://codereview.chromium.org/2176663003/ Reason for Reland: I've added rebaselines to TestExpectations, following: https://www.chromium.org/developers/testing/webkit-layout-tests/testexpectations#TOC-How-to-rebaseline TBR=flackr@chromium.org,asanka@chromium.org,mpearson@chromium.org BUG=621772 Review-Url: https://codereview.chromium.org/2177963002 Cr-Commit-Position: refs/heads/master@{#407548}
-
jaydasika authored
We don't apply surface contents scale for root. We currently check the transform id to determine if we are at root node. This CL replaces that with effect ids. BUG=622372 CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_blink_rel Review-Url: https://codereview.chromium.org/2163823003 Cr-Commit-Position: refs/heads/master@{#407547}
-
puthik authored
This patch adds the mojo definition for Gatt Server API BUG=629210 TEST=Build Review-Url: https://codereview.chromium.org/2104023002 Cr-Commit-Position: refs/heads/master@{#407546}
-
nednguyen authored
We remove telemetry_perf_unittest suite from Mac10.9 & all dbg bots because we don't run performance benchmark on those configuration (See attached bug for more details) BUG=630765 Review-Url: https://codereview.chromium.org/2175293002 Cr-Commit-Position: refs/heads/master@{#407545}
-
zea authored
Due to a bug in how server generated root nodes for autofill wallet metadata were created, clients can have both an implicitly created root node and an explicitly (server-side) created root node. This change makes it so we gracefully handle this by allowing both to live side by side in the parent_child_index, and ensures new entities don't become invisible. BUG=630035 Review-Url: https://codereview.chromium.org/2168273002 Cr-Commit-Position: refs/heads/master@{#407544}
-
sergeyu authored
Previously WebrtcDataStreamAdapter acted as a factory of MessagePipe adapters, now it works as an adapter itself. It gets webrtc::DataChannelInterface in the constructor and the WebrtcTransport is responsible for creation of the data channels themselves. Review-Url: https://codereview.chromium.org/2172423002 Cr-Commit-Position: refs/heads/master@{#407543}
-
jam authored
Review-Url: https://codereview.chromium.org/2172933003 Cr-Commit-Position: refs/heads/master@{#407542}
-
thestig authored
Remove ifdefs that assume otherwise. Review-Url: https://codereview.chromium.org/2174983002 Cr-Commit-Position: refs/heads/master@{#407541}
-
gauravsh authored
Review-Url: https://codereview.chromium.org/2180963004 Cr-Commit-Position: refs/heads/master@{#407540}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/4a6e5346..61e64edd 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_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/2179713003 Cr-Commit-Position: refs/heads/master@{#407539}
-
sky authored
Which is notified as accelerators are added/removed. BUG=612331 TEST=none R=ben@chromium.org Review-Url: https://codereview.chromium.org/2177983002 Cr-Commit-Position: refs/heads/master@{#407538}
-
mpearson authored
Revert of Cast device revocation checking. (patchset #26 id:500001 of https://codereview.chromium.org/2050983002/ ) Reason for revert: Causes failure on https://build.chromium.org/p/chromium.linux/builders/Linux%20Tests%20%28dbg%29%281%29%2832%29/builds/31399 in components_unittests failures VerifyCastDeviceCertTest.ChromecastGen2InvalidTime VerifyCastDeviceCertTest.ChromecastGen2InvalidTime (run #1): [ RUN ] VerifyCastDeviceCertTest.ChromecastGen2InvalidTime ../../components/cast_certificate/cast_cert_validator_unittest.cc:99: Failure Value of: base::Time::FromUTCExploded(time, &result) Actual: false Expected: true [ FAILED ] VerifyCastDeviceCertTest.ChromecastGen2InvalidTime (13 ms) Original issue's description: > Cast device revocation checking. > > Cast device certificates may be revoked through two ways: > 1. The hash of the public key. > 2. A serial number range for an issuer identified by the hash > of its public key. > > A customized proto is used as the medium for this information. > > This change contains the implementation for verifying the custom CRL > and verifying a certificate's revocation status based on that CRL. > > BUG=618463 > > Committed: https://crrev.com/698608f28ed2df276f920c9691cbfcb8f9069337 > Cr-Commit-Position: refs/heads/master@{#407492} TBR=sheretov@chromium.org,eroman@chromium.org,asargent@chromium.org,davidben@chromium.org,ryanchung@chromium.org # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=618463 Review-Url: https://codereview.chromium.org/2181013002 Cr-Commit-Position: refs/heads/master@{#407537}
-
ianswett authored
R=rch@chromium.org BUG= Review-Url: https://codereview.chromium.org/2181693003 Cr-Commit-Position: refs/heads/master@{#407536}
-
jif authored
BUG=623016 TBR=rohitrao Review-Url: https://codereview.chromium.org/2180943002 Cr-Commit-Position: refs/heads/master@{#407535}
-
thestig authored
Review-Url: https://codereview.chromium.org/2173033002 Cr-Commit-Position: refs/heads/master@{#407534}
-
oshima authored
Revert of Run exo tests in parallel (patchset #1 id:1 of https://codereview.chromium.org/2162143006/ ) Reason for revert: Could be causing flaky-ness. BUG=630625 Original issue's description: > Run exo tests in parallel > > BUG=None > R=reveman@chromium.org > > Committed: https://crrev.com/5fbe6a031d7be91fa3f276a726fb05ed4fb31c82 > Cr-Commit-Position: refs/heads/master@{#406564} TBR=reveman@chromium.org # Not skipping CQ checks because original CL landed more than 1 days ago. BUG=None Review-Url: https://codereview.chromium.org/2178913004 Cr-Commit-Position: refs/heads/master@{#407533}
-
stevenjb authored
https://chromium.googlesource.com/chromiumos/chromite.git/+log/8c1b19c098bd..6da947426f14 $ git log 8c1b19c09..6da947426 --date=short --no-merges --format='%ad %ae %s' 2016-07-21 llozano GN: Fix spurious compiler warning in Simple Chrome. 2016-07-20 dshi Remove unnecessary configs in toolchain builders. 2016-07-22 nxia Remove "important" and add logging for config-updater. 2016-02-25 msartori Store mobmonitor logs in /mnt/moblab/tmp & restrict file list 2016-07-21 chrome-bot Update config settings by config-updater. 2016-07-21 yueherngl Remove 'cave-release' from _waterfall_config_map 2016-07-21 llozano AFDO: allow collection of profiles on samus, link. 2016-07-20 nxia Insert 'buildbucket_id' into cidb when it's provided. 2016-07-13 stevenjb Always set USE=gn for SimpleChrome 2016-07-19 phobbs ts_mon_config: Add support for short-lived tasks 2016-07-18 philipchen Elm: enable hwtest in elm-paladin 2016-07-18 nxia Add column buildbucket_id in buildTable. 2016-07-19 bhthompson Enable branch PFQ to also rev Android 2016-07-18 llozano Fix Simple Chrome workflow to use cros Clang. 2016-07-19 davidriley Revert "Revert "archive_stages: Mark DebugStages as "Forgiven" on upload failure."" 2016-07-18 nxia Fix unittest path inside chroot 2016-07-18 nxia Fix chromeos_config_unittest 2016-07-18 nxia Add --buildbucket-bucket and --buildbucket-id to cbuildbot. 2016-07-18 chrome-bot Update config settings by config-updater. 2016-07-17 nxia Enable config-updater PushCommits method. 2016-07-18 davidriley Revert "archive_stages: Mark DebugStages as "Forgiven" on upload failure." 2016-07-13 nxia Fix --use-buildbucket to trigger tryjobs with buildbucket. 2016-07-08 nxia Add buildslave_type and active_waterfall for config-updater. 2016-07-06 dgarrett upload_symbols: Get rid of Counter class. 2016-06-29 bhthompson Export fingerprint list metadata in build image stage 2016-07-11 dgarrett archive_stages: Mark DebugStages as "Forgiven" on upload failure. 2016-07-12 akeshet metrics: report build stage count, build count, build duration 2016-07-11 bhthompson Add Gale paladin 2016-07-11 bhthompson Disable VMTests for new cheets boards 2016-07-08 jrbarnette Increase test timeout allowances for canaries. 2016-07-08 akeshet metrics: add a false rejection counter metric 2016-07-11 akeshet ts_mon: use notice-level logging for ts_mon_config messages 2016-07-07 sbasi [chromite] Don't include index.html in the Artifacts links. 2016-06-02 bhthompson Revert "cros_mark_android_as_stable: add support to copy cts zip new bucket" 2016-06-29 nxia Add config-updater builder. 2016-07-06 dgarrett upload_symbols: Sort larger files first. 2016-07-07 bhthompson Add paladin for gru 2016-07-06 dgarrett upload_symbols: Slow the upload rate. 2016-07-01 nxia Generate configs based on ge_build_config.json 2016-07-06 akeshet metrics: use a smaller bucket size for seconds distributions 2016-07-06 akeshet ts_mon: log when forcing ts_mon flush 2016-07-01 akeshet metrics: add TsMonFlusher context manager, use it in cbuildbot 2016-06-22 nxia Build overwritten_configs and overwrite release builders. 2016-07-03 bhthompson Disable VMTests for samus and cyan for cheets 2016-07-01 cmtice [toolchain builders] Fix HWTest failure. 2016-06-16 dgarrett upload_symbols: General refactor to remove multiprocess. 2016-06-30 akeshet metrics: record CL handling time and false rejection stats in monarch 2016-07-01 nxia Fix GetBuildHistory for cros_uprevchrome. 2016-06-30 philipchen Add elm-paladin (experimental) to waterfall 2016-06-29 nxia Do git gc auto on all loose objects in CleanUpStage. 2016-06-23 sbasi Revert "guado_moblab-release: Run bvt-cq" 2016-06-30 arthurhsu Script to help users setup ADB for debugging Android apps. 2016-06-29 nxia Repo sync before RunPrePatchBuild. 2016-06-30 cnwan Decrease number of available DUTs assigned to bvt-cq to 3 since we have 1 machine down in the lab. 2016-06-27 philipchen Make gale board non-experimental in builder config 2016-06-28 nxia Add config-updater config. 2016-06-29 stevenjb Fix gclient test expectations for Manged: True change 2016-06-29 stevenjb gclient wrapper: Add --managed flag 2016-06-24 fdeng Add retries to run_suite create command 2016-06-24 hidehiko Roll ADB with the system image. 2016-06-22 cmtice [cbuildbot] Make toolchain bots run their tests synchronously. 2016-06-23 dgarrett chromeos_config: Add aosp to EXTERNAL_REMOTES list. 2016-06-21 dgarrett cros build: Add --test option. 2016-06-23 akeshet generic_stages: report stage duration as a monarch stat 2016-06-23 akeshet metrics: move metric names to constants; add new metric handle type 2016-06-24 akeshet third_party: give chromite it's own copy of oauth2client 1.5.2 2016-06-13 dgarrett cros stats: Run this command inside the chroot. 2016-06-23 akeshet CleanUpStage: add logging 2016-06-22 akeshet metrics: add support for String, Boolean, and Float metrics 2016-06-21 akeshet metrics: create a more convenient wrapper around ts_mon 2016-06-16 nxia Add UprevvedChrome flag in metadata.json for Chrome PFQ. 2016-06-17 stevenjb Add gn for all informational configs BUG=none Review-Url: https://codereview.chromium.org/2182543002 Cr-Commit-Position: refs/heads/master@{#407532}
-
mlamouri authored
Currently, fullscreen request is only permitted when it is triggered by a user gesture. This is allowing allowing a screen orientation change to request fullscreen. This CL is taking over https://crrev.com/1818493002 from zqzhang@chromium.org BUG=594253 Review-Url: https://codereview.chromium.org/2175863002 Cr-Commit-Position: refs/heads/master@{#407531}
-
twellington authored
Record user actions when intents from launcher shortcuts are received. Also, update AndroidManifest.xml to use an sdk version number rather than a codename. BUG=629149 Review-Url: https://codereview.chromium.org/2174563002 Cr-Commit-Position: refs/heads/master@{#407530}
-
staraz authored
The new constructor is to be used by Version's mojom struct and its type mapping. BUG=622707 Review-Url: https://codereview.chromium.org/2163033002 Cr-Commit-Position: refs/heads/master@{#407529}
-
Krishna Govind authored
Cr-Commit-Position: refs/heads/master@{#407528} -
Rebaseline Bot authored
https://chromium.googlesource.com/chromium/src/+/9ff8991aa BUG=627844 TBR=bsalomon@google.com Review URL: https://codereview.chromium.org/2179893002 . Cr-Commit-Position: refs/heads/master@{#407527}
-
vakh authored
BUG=630784, 543161 Review-Url: https://codereview.chromium.org/2181583004 Cr-Commit-Position: refs/heads/master@{#407526}
-
creis authored
There are some cases in UseSubframeNavigationEntries where a FrameNavigationEntry ends up with an empty PageState, leading to this crash. Until it is diagnosed, downgrade it to a DCHECK. The only functional regression should be a loss of things like scroll position and form data when using modes like --isolate-extensions. BUG=568703 TEST=No more RenderFrameImpl::NavigateInternal crashes. Review-Url: https://codereview.chromium.org/2174243002 Cr-Commit-Position: refs/heads/master@{#407525}
-
catapult-deps-roller authored
https://chromium.googlesource.com/external/github.com/catapult-project/catapult.git/+log/c3cf2e8ef854..9224f7903b9c $ git log c3cf2e8ef..9224f7903 --date=short --no-merges --format='%ad %ae %s' TBR=catapult-sheriff@chromium.org Review-Url: https://codereview.chromium.org/2181713003 Cr-Commit-Position: refs/heads/master@{#407524}
-
luoe authored
BUG=614957 Review-Url: https://codereview.chromium.org/2177693002 Cr-Commit-Position: refs/heads/master@{#407523}
-
yucliu authored
1. Pass security origin when creating CastCdm. 2. Remove destination url in media session message callback, as unprefixed eme doesn't need it. BUG=internal b/30075657 TEST=Mpl End2End test. Review-Url: https://codereview.chromium.org/2160953004 Cr-Commit-Position: refs/heads/master@{#407522}
-
tbansal authored
This keeps the caching mechanism separate from NQE. This is first step towards enabling persistent caching of estimates. This CL does not record any functional changes, although tests have been expanded. Also, add UMA to record how frequently cached network quality is available. BUG=490870 Review-Url: https://codereview.chromium.org/2128793003 Cr-Commit-Position: refs/heads/master@{#407521}
-
romax authored
Fixing the issue where in offline mode, bookmarking an offline page would save the file path instead of the original path. BUG=623243 Review-Url: https://codereview.chromium.org/2144423002 Cr-Commit-Position: refs/heads/master@{#407520}
-
robpercival authored
This is required for querying those logs over DNS (more specifically, Google mirrors of those logs). BUG=612439 Review-Url: https://codereview.chromium.org/2108833005 Cr-Commit-Position: refs/heads/master@{#407519}
-
machenbach authored
V8 stand-alone arm simulator builds defaulted to softfp in GYP before. This prepares to switch v8 arm simulators to GN: https://codereview.chromium.org/2172193002/ BUG=chromium:474921 Review-Url: https://codereview.chromium.org/2182473002 Cr-Commit-Position: refs/heads/master@{#407518}
-
juncai authored
At ItemChooserDialog.java, ItemAdapter::clear() is called when restart searching, and mDisabledEntries and mItemDescriptionMap store the information from previous search. So they need to be cleared. BUG=631099 Review-Url: https://codereview.chromium.org/2175223003 Cr-Commit-Position: refs/heads/master@{#407517}
-
skia-deps-roller authored
https://chromium.googlesource.com/skia.git/+log/2adecda92b2f..d9ddad2952cd $ git log 2adecda92..d9ddad295 --date=short --no-merges --format='%ad %ae %s' 2016-07-25 reed add SK_SUPPORT_LEGACY_BITMAP_GETTEXTURE for out-of-date google3 callers 2016-07-25 reed remove/deprecate SkBitmap::getTexture, as it now always returns false CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_blink_rel TBR=tomhudson@google.com Review-Url: https://codereview.chromium.org/2182573002 Cr-Commit-Position: refs/heads/master@{#407516}
-
boliu authored
Disable the extension instead. 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/2180763002 Cr-Commit-Position: refs/heads/master@{#407515}
-
trizzofo authored
When PreferHtmlOverPlugins feature is enabled, fetch Content Settings and don't advertise Flash if it's on CONTENT_SETTING_BLOCK. This will only work properly when plugin caches are disabled in future CLs. Here is more information about HTML5 by Default: https://docs.google.com/document/d/1iHhg7wxYTgBHsTzcfaZy36UJ33JmjRLro8TZR6lb0ss BUG=626728 Review-Url: https://codereview.chromium.org/2168453002 Cr-Commit-Position: refs/heads/master@{#407514}
-
erikchen authored
The function allows the client to send a vector of filter effects to apply to the next layer scheduled with glScheduleCALayerCHROMIUM. BUG=581526 CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_blink_rel Review-Url: https://codereview.chromium.org/2175043002 Cr-Commit-Position: refs/heads/master@{#407513}
-