- 08 Sep, 2016 40 commits
-
-
pdfium-deps-roller authored
https://pdfium.googlesource.com/pdfium.git/+log/8c2a8cda1bdb..d827111fb10c $ git log 8c2a8cda1..d827111fb --date=short --no-merges --format='%ad %ae %s' 2016-09-08 dsinclair Switch to ValueOrDie 2016-09-08 weili Fix leaks in class CFGAS_FontMgrImp BUG=637984 TBR=dsinclair@chromium.org Review-Url: https://codereview.chromium.org/2324833003 Cr-Commit-Position: refs/heads/master@{#417346}
-
johnme authored
BUG=644050 Review-Url: https://codereview.chromium.org/2323753002 Cr-Commit-Position: refs/heads/master@{#417345}
-
rockot authored
It turns out creating a Channel paused is not good enough; we actually need to be able to send some messages, then pause, send more messages, unpause, send even more messages, and then flush. This is because of subtleties in how RPHI handles queuing. It queues messages before the Channel is created, then there is a brief period between Channel creation and process launch where messages aren't queued but are sent immediately (but previously queued messages remain in queue), and then new messages are queued again during process launch, and finally queueing is turned off after process launch. This changes Channel to have an explicit Pause() API and gets rid of the recently added ConnectPaused(). BUG=612500 Review-Url: https://codereview.chromium.org/2316963005 Cr-Commit-Position: refs/heads/master@{#417344}
-
dskiba authored
Native heap profiler traces on Linux are sometimes incomplete because unwinder hits a function from a system library (i.e. no frame pointers), finds bad stack frame and stops. This CL implements stack scanning, so instead of stopping unwinder scans stack for a valid frame pointer and resumes unwinding. BUG=624362 Review-Url: https://codereview.chromium.org/2276813002 Cr-Commit-Position: refs/heads/master@{#417343}
-
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/fb935b70f5e0d69ce628d6df2aa4045efc3d60b7 Roll recipe dependencies (trivial). (recipe-roller@chromium.org) https://crrev.com/aa76eb0516a28e78126869200f820fd3548b8f22 Roll recipe dependencies (trivial). (recipe-roller@chromium.org) depot_tools: https://crrev.com/73baf8534877e82eb7c4e96aba0f122e39f6e2ee Update gclient test to assert both dir and url (agable@chromium.org) https://crrev.com/dce6ddcd21d71688aed5fd10b7cb1216275639ef Propagate use_relative_paths into recursedeps (agable@chromium.org) TBR=martiniss@chromium.org,phajdan.jr@chromium.org BUG= Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Review-Url: https://codereview.chromium.org/2327563002 Cr-Commit-Position: refs/heads/master@{#417342}
-
petewil authored
BUG=610521 Review-Url: https://codereview.chromium.org/2316493006 Cr-Commit-Position: refs/heads/master@{#417341}
-
skia-deps-roller authored
https://chromium.googlesource.com/skia.git/+log/2b3c2a3ff916..4cea3b9e9d98 $ git log 2b3c2a3ff..4cea3b9e9 --date=short --no-merges --format='%ad %ae %s' 2016-09-08 brianosman Push usage of GrColor4f into OverrideInput 2016-09-08 mtklein most is fine for *SAN bots now 2016-09-08 ethannicholas removed const from ASTVarDeclaration::fName to avoid a Chromium build failure GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2325673002 2016-09-08 mtklein Clean up target_os=llvm now that it does nothing. 2016-09-08 robertphillips Add GM/slide to simulate Android-style reveal clip 2016-09-08 halcanary Tests: DiscardableMemory test no longer relies on global state 2016-09-08 mtklein SkLiteDL: drawAsLayer() CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel TBR=caryclark@google.com Review-Url: https://codereview.chromium.org/2324843002 Cr-Commit-Position: refs/heads/master@{#417340}
-
ellyjones authored
This change: 1) Reflects the window controls horizontally for RTL 2) Reflects the profile switcher horizontally for RTL 3) Adjusts the left and right indents for the tabstrip itself to account for those reflections BUG=642732 Review-Url: https://codereview.chromium.org/2313723004 Cr-Commit-Position: refs/heads/master@{#417339}
-
lushnikov authored
Revert of [Fetch API] Start reading blob only when the reader wants to read contents. (patchset #3 id:40001 of https://codereview.chromium.org/2303753003/ ) Reason for revert: Speculative revert: this patch is a suspect to cause Linux MSAN failures: https://uberchromegw.corp.google.com/i/chromium.webkit/builders/WebKit%20Linux%20MSAN/builds/12091 The other suspected patch, the only one related to canvas, was reverted and didn't help. Original issue's description: > [Fetch API] Start reading blob only when the reader wants to read contents. > > BUG=643174 > > Committed: https://crrev.com/f1ca96c413912ff1768e4274b8b7ac78eb41de64 > Cr-Commit-Position: refs/heads/master@{#416923} TBR=hiroshige@chromium.org,jkarlin@chromium.org,yhirano@chromium.org # Not skipping CQ checks because original CL landed more than 1 days ago. BUG=643174 Review-Url: https://codereview.chromium.org/2319093004 Cr-Commit-Position: refs/heads/master@{#417338}
-
ryansturm authored
DataReductionProxy has moved to reporting PLT via PageLoad.* and no longer needs the renderer based metrics. While the browser based metrics do not cover all of the use cases, the new metrics are sufficient for the analysis DRP needs moving forward. This also removes the DRP IPC completely. BUG=643307 Review-Url: https://codereview.chromium.org/2314163003 Cr-Commit-Position: refs/heads/master@{#417337}
-
jkrcal authored
In order to scale to 100% of users in M55, we need adaptive fetching rates for server-side suggestions on the new tab page. This CL implements reporting of usage metrics to UMA. We need to collect these metrics already in M54 so that we have enough data to define default parameters for the adaptive fetching rates in M55. Design doc: https://docs.google.com/a/google.com/document/d/1tDl2Dx_ZPnSyoe7hAe55mT2uTeXDaFVphqsWZEjp3EQ/edit?usp=sharing BUG=644716 Review-Url: https://codereview.chromium.org/2315273002 Cr-Commit-Position: refs/heads/master@{#417336}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/cbbb79d3..a12446e2 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/2326573002 Cr-Commit-Position: refs/heads/master@{#417335}
-
rob.buis authored
BUG=402536 Review-Url: https://codereview.chromium.org/2314923002 Cr-Commit-Position: refs/heads/master@{#417334}
-
nasko authored
BUG=645022, 630103 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_site_isolation Review-Url: https://codereview.chromium.org/2316263004 Cr-Commit-Position: refs/heads/master@{#417333}
-
agrieve authored
BUG=641888 Review-Url: https://codereview.chromium.org/2321773003 Cr-Commit-Position: refs/heads/master@{#417332}
-
sadrul authored
GpuChildThread itself never uses |gpu_preferences_|. However, GpuChannelManager holds a reference to it. So remove it from GpuChildThread, and have GpuChannelManager, which actually uses it, own it instead. BUG=none 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/2322893002 Cr-Commit-Position: refs/heads/master@{#417331}
-
bmcquade authored
We already track parser blocking script load time. This patch adds support for tracking parser blocking script execution time. We have a few use cases for this: * allows us to understand % of parse time blocked on script exec time, to better understand whether script exec time is a significant contributor to page load time * having this would have helped us to catch a regression that took hours of time to identify the root cause of (crbug.com/608424) * there is a desire to understand how much time scripts inserted via doc.write spend executing, in addition to loading BUG=640260 Review-Url: https://codereview.chromium.org/2238543002 Cr-Commit-Position: refs/heads/master@{#417330}
-
yunchao.he authored
https://chromium.googlesource.com/external/khronosgroup/webgl.git/+log/3d0e045..2e13422 BUG= TEST=bots CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.win:win_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.android:android_optional_gpu_tests_rel Review-Url: https://codereview.chromium.org/2310243003 Cr-Commit-Position: refs/heads/master@{#417329}
-
dougarnett authored
[Offline Pages] Simple, mergable fix to no longer report a request completed when it is FOREGROUND_CANCELED or PRERENDERING_CANCELED and subject to retry. BUG=644444 Review-Url: https://codereview.chromium.org/2326593002 Cr-Commit-Position: refs/heads/master@{#417328}
-
dschuyler authored
This CL reworks the 'default browser' messages displayed in different situations. The error icon has been removed to match the specs. A browser proxy and unit tests have been added. BUG=623328 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:closure_compilation Review-Url: https://codereview.chromium.org/2317693003 Cr-Commit-Position: refs/heads/master@{#417327}
-
danakj authored
This was only for DirectRenderers. R=enne BUG=606056 CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel Review-Url: https://codereview.chromium.org/2318953004 Cr-Commit-Position: refs/heads/master@{#417326}
-
peconn authored
BUG=622975 Review-Url: https://codereview.chromium.org/2323703003 Cr-Commit-Position: refs/heads/master@{#417325}
-
catapult-deps-roller authored
https://chromium.googlesource.com/external/github.com/catapult-project/catapult.git/+log/fa4f083913a8..328391fbc1e3 $ git log fa4f08391..328391fbc --date=short --no-merges --format='%ad %ae %s' 2016-09-08 petrcermak [telemetry] Export SharedPageState.possible_browser 2016-09-08 andy Allow symlinks to tracing binaries BUG=634331 TBR=catapult-sheriff@chromium.org Review-Url: https://codereview.chromium.org/2326563002 Cr-Commit-Position: refs/heads/master@{#417324}
-
johnme authored
On both desktop and Android, the Push API will now be backed by InstanceID tokens instead of GCM registrations. This should have no compatibility impact, since GCM was already silently converting Push API registrations to InstanceID format server-side. Part of a series of patches: 1. https://codereview.chromium.org/1832833002 adds InstanceIDWithSubtype 2. https://codereview.chromium.org/1830983002 adds JNI bindings 3. https://codereview.chromium.org/1829023002 adds fake and test 4. https://codereview.chromium.org/1899753002 fixes strict mode violations 5. https://codereview.chromium.org/1854093002 enables InstanceID by default 6. https://codereview.chromium.org/1953273002 extends the GCMKeyStore 7. https://codereview.chromium.org/1923953002 integrates IIDs with crypto 8. https://codereview.chromium.org/2111973002 adds IID subtypes on desktop 9. this patch Also depends on - https://codereview.chromium.org/1945753002 transactional SW userdata - https://codereview.chromium.org/1944863002 fix sender ID storage BUG=589461, 533498 Review-Url: https://codereview.chromium.org/1851423003 Cr-Commit-Position: refs/heads/master@{#417323}
-
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/43aa8362731911d4ea42bcdceeb1f652625e283b Show CIPD packages and versions. (dnj@chromium.org) TBR=martiniss@chromium.org,phajdan.jr@chromium.org BUG=None Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Review-Url: https://codereview.chromium.org/2321693003 Cr-Commit-Position: refs/heads/master@{#417322}
-
samuong authored
BUG=chromedriver:1497 TBR=stgao@chromium.org Review-Url: https://codereview.chromium.org/2328583002 Cr-Commit-Position: refs/heads/master@{#417321}
-
alexmos authored
BUG=477150 NOTRY=true Review-Url: https://codereview.chromium.org/2323643002 Cr-Commit-Position: refs/heads/master@{#417320}
-
dschuyler authored
This CL moves the underline in the subpage search up by two px, to match mocks (request by Alan). BUG=638453 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:closure_compilation Review-Url: https://codereview.chromium.org/2321733002 Cr-Commit-Position: refs/heads/master@{#417319}
-
chrome-cron authored
Cr-Commit-Position: refs/heads/master@{#417318}
-
skia-deps-roller authored
https://chromium.googlesource.com/skia.git/+log/da7136750d30..2b3c2a3ff916 $ git log da7136750..2b3c2a3ff --date=short --no-merges --format='%ad %ae %s' 2016-09-08 mtklein GN: add sanitize arg CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel TBR=caryclark@google.com Review-Url: https://codereview.chromium.org/2323823002 Cr-Commit-Position: refs/heads/master@{#417317}
-
sdefresne authored
As the variable is now true (it's end state), it can be removed and the corresponding legacy code. BUG=637065 Review-Url: https://codereview.chromium.org/2316683002 Cr-Commit-Position: refs/heads/master@{#417316}
-
apacible authored
Responding to wez@'s comments in crrev.com/2281323002. This change removes a BackoffEntry for a component extension if it has loaded and there has been no additional failures for that extension within 60s. BUG=639104 Review-Url: https://codereview.chromium.org/2310463002 Cr-Commit-Position: refs/heads/master@{#417315}
-
magjed authored
Changes: https://chromium.googlesource.com/external/webrtc/trunk/webrtc.git/+log/e5402e7..3d67882 $ git log e5402e7..3d67882 --date=short --no-merges --format=%ad %ae %s 2016-09-08 minyue@webrtc.org Separating video settings in VideoQualityTest. 2016-09-08 ehmaldonado@webrtc.org Add a DEPS gclient hook to prune corrupt mockito remote. 2016-09-08 solenberg@webrtc.org Revert of Don't use VoE legacy APIs in force_mic_volume_max tool. (patchset #5 id:80001 of https://codereview.webrtc.org/2268183007/ ) 2016-09-08 henrika@webrtc.org Avoids crash in WebRtcAudioTrack.initPlayout (part II) 2016-09-08 solenberg@webrtc.org Don't use VoE legacy APIs in force_mic_volume_max tool. TBR= CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_chromium_archive_rel_ng;master.tryserver.chromium.mac:mac_chromium_archive_rel_ng BUG= Review-Url: https://codereview.chromium.org/2323023002 Cr-Commit-Position: refs/heads/master@{#417314}
-
jbauman authored
StartSandboxedProcess was missing a Release call, so this was always leaking. Use scoped_refptr instead to fix that and prevent it from happening in the future. TBR=piman@chromium.org CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.win:win10_chromium_x64_rel_ng Review-Url: https://codereview.chromium.org/2316333003 Cr-Commit-Position: refs/heads/master@{#417313}
-
justincohen authored
BUG=637385 Review-Url: https://codereview.chromium.org/2306563002 Cr-Commit-Position: refs/heads/master@{#417312}
-
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/0d5b7bd87099c2c5d5590c13116c6e3aa7d2c408 Canary new LogDog Butler on Infra. (dnj@chromium.org) TBR=martiniss@chromium.org,phajdan.jr@chromium.org BUG=chromium:643243 Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Review-Url: https://codereview.chromium.org/2324813002 Cr-Commit-Position: refs/heads/master@{#417311}
-
hanxi authored
pressed and WebAPKs are enabled. When user clicks A2HS from the app menu, a A2HS dialog shows to add a shortcut. When WebAPK is enabled, an app banner info bar is expected to show for WebAPK-compatible site. This CL includes: - AddToHomeScreenManager creates an app banner to install WebAPKs. - Refactory in AppBannerInfobarDelegateAndroid that passes in a ShortcutInfo instead of Manifest file. - When installing WebAPK from the app menu, the app banner skips the state of showing "Add to Homescrenn" on its button but jumps to "Adding" state and starts the installation. UX review see https://docs.google.com/presentation/d/1QbHDigLFR1oucsnlXQ9f6AxQYYI6Ka0Gl0A_vWpFjSA/edit#slide=id.g1503c2082e_0_28. Review-Url: https://codereview.chromium.org/2290603005 Cr-Commit-Position: refs/heads/master@{#417310}
-
svillar authored
The code was making a reference to an attribute of a temporary object created by gridTrackSize(). BUG=641982 Review-Url: https://codereview.chromium.org/2325603003 Cr-Commit-Position: refs/heads/master@{#417309}
-
primiano authored
TIL about file:// in OWNERS. Unifying mainteinance of tracing OWNERS. Review-Url: https://codereview.chromium.org/2283703002 Cr-Commit-Position: refs/heads/master@{#417308}
-
flandy authored
BUG=639095 Review-Url: https://codereview.chromium.org/2322683002 Cr-Commit-Position: refs/heads/master@{#417307}
-