- 19 Dec, 2016 29 commits
-
-
skia-deps-roller authored
https://skia.googlesource.com/skia.git/+log/57845a7264ef..64b70b096ac2 $ git log 57845a726..64b70b096 --date=short --no-merges --format='%ad %ae %s' 2016-12-18 joel.liang Generate Signed Distance Field directly from vector path Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, see: http://www.chromium.org/developers/tree-sheriffs/sheriff-details-chromium#TOC-Failures-due-to-DEPS-rolls CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_trusty_blink_rel TBR=rmistry@google.com Review-Url: https://codereview.chromium.org/2583053002 Cr-Commit-Position: refs/heads/master@{#439415}
-
tzik authored
Workers doesn't have the scheduler in Blink. So, its tasks are unthrottled anyway. This CL assigns it as TaskType::Internal for now rather than using TaskType::Unspecified. BUG=624696 Review-Url: https://codereview.chromium.org/2580253002 Cr-Commit-Position: refs/heads/master@{#439414}
-
haraken authored
Currently supplement objects are reused when an initial empty document navigates to a same-origin document. This is problematic because ContextLifecycleObservers are detached when the initial empty document is destroyed. They cannot be used after the navigation. To fix the problem, we need to install supplements at every navigation. BUG=610176 Review-Url: https://codereview.chromium.org/2580753004 Cr-Commit-Position: refs/heads/master@{#439413}
-
falken authored
Sheriffs: This patch will likely cause crashes. I'll revert once we gather enough data. BUG=485900 Review-Url: https://codereview.chromium.org/2580793004 Cr-Commit-Position: refs/heads/master@{#439412}
-
tkent authored
Revert of Extend CopyTextureCHROMIUM to more ES 3.0 texture formats. (patchset #27 id:620001 of https://codereview.chromium.org/2479513002/ ) Reason for revert: Caused crashes in dozens of layout tests. https://build.chromium.org/p/chromium.webkit/builders/WebKit%20Linux%20Trusty/builds/21138 Original issue's description: > Extend CopyTextureCHROMIUM to more ES 3.0 texture formats. > > Add support for the following copying techniques: > > 1) Using CopyTexImage2D when the source is color-renderable. > > 2) Drawing a quad when the destination is color-renderable. > > 3) Drawing to an intermediate texture, and copying from that > intermediate texture to the destination, when neither is > color-renderable. > > Add support for nearly all of the new ES 3.0 texture formats. > > Follow-on work remains, including some scenarios described in the bug, > such as copying to faces of currently-incomplete cube maps. > > BUG=612542 > 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 > > Committed: https://crrev.com/bcf132827ebd0436fd3620bbda4cbcf3febdc161 > Cr-Commit-Position: refs/heads/master@{#439312} TBR=kbr@chromium.org,zmo@chromium.org,yunchao.he@intel.com,qiankun.miao@intel.com # Not skipping CQ checks because original CL landed more than 1 days ago. BUG=612542 Review-Url: https://codereview.chromium.org/2589613002 Cr-Commit-Position: refs/heads/master@{#439411}
-
bashi authored
When a renderer enters THROTTLED state, we should send a notifications to V8 so that V8 is aware of memory pressure. BUG=674815 Review-Url: https://codereview.chromium.org/2577353002 Cr-Commit-Position: refs/heads/master@{#439410}
-
tkent authored
with DCHECK_op, DCHECK_IS_ON(), and NOTREACHED respectively. This CL added some functions to WTF::HashTable to reduce '#if DCHECK_IS_ON()'. UNIMPLEMENTED macro in OffscreenCanvasRenderingContext2D.cpp is removed because it conflicts to utils.h and is not used. This CL has no behavior changes. BUG=596760 Review-Url: https://codereview.chromium.org/2585673002 Cr-Commit-Position: refs/heads/master@{#439409}
-
skia-deps-roller authored
https://skia.googlesource.com/skia.git/+log/d4b9c35d9d8c..57845a7264ef $ git log d4b9c35d9..57845a726 --date=short --no-merges --format='%ad %ae %s' 2016-12-16 fmalita Fix clamp lowbits extraction when combined with non-clamp Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, see: http://www.chromium.org/developers/tree-sheriffs/sheriff-details-chromium#TOC-Failures-due-to-DEPS-rolls CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_trusty_blink_rel TBR=rmistry@google.com Review-Url: https://codereview.chromium.org/2586143002 Cr-Commit-Position: refs/heads/master@{#439408}
-
j.c authored
This CL adds 'sm' param to naver's search url. BUG= Review-Url: https://codereview.chromium.org/2578953002 Cr-Commit-Position: refs/heads/master@{#439407}
-
warx authored
Changes: (1) move AppWindowWaiter from chromeos namespace to apps namespace (2) apply the new test support BUG=672312 TEST=automated tests. Review-Url: https://codereview.chromium.org/2576353002 Cr-Commit-Position: refs/heads/master@{#439406}
-
ssid authored
For fast polling the dump provider keeps the /proc/<pid>/statm files open during the tracing session. BUG=607533 Review-Url: https://codereview.chromium.org/2568313004 Cr-Commit-Position: refs/heads/master@{#439405}
-
meade authored
Instead, use only constructors that take CSSAngleValues, so that the unit is explicit, then actually store this information. This is to reflect the spec change that removed these constructors in https://github.com/w3c/css-houdini-drafts/commit/535591271f88d71fd7ca60dc4132db15f93b980a Also includes: - Adding support for making a CSSAngleValue out of a CSSPrimitiveValue, to continue supporting getting CSSTransform(CSSRotation) from inline StylePropertyMaps. - Moves some of the inlineStyle CSSRotation tests to use the property-suite for more thorough testing. I was not able to convert all the tests, as I still have to figure out how to test the behaviour when the value is set using the old CSSOM to something like "rotateX", "rotateY" and "rotateZ". BUG=545318 Review-Url: https://codereview.chromium.org/2550063002 Cr-Commit-Position: refs/heads/master@{#439404}
-
chrome-cron authored
Cr-Commit-Position: refs/heads/master@{#439403}
-
kouhei authored
BUG=628016 Review-Url: https://codereview.chromium.org/2583043002 Cr-Commit-Position: refs/heads/master@{#439402}
-
derat authored
Move the file manager kRemovableMediaPath constant to a header so it can be used by tests. BUG=633243 Review-Url: https://codereview.chromium.org/2582143002 Cr-Commit-Position: refs/heads/master@{#439401}
-
dtapuska authored
Nobody uses mice anymore. No seriously there is only one subclass of MouseRelatedEvent... MouseEvent. Collapse them together. BUG=625684 Review-Url: https://codereview.chromium.org/2580083002 Cr-Commit-Position: refs/heads/master@{#439400}
-
shimazu authored
If the suspending process has a worker thread, currently the worker won't respond with events any more. This patch is to keep the process running which has workers. BUG=671084 Review-Url: https://codereview.chromium.org/2569963002 Cr-Commit-Position: refs/heads/master@{#439399}
-
yiyix authored
Since |logout_button_tray_| is moved to the left most position in the status area widget, the logic on hiding separator of tray in left of the |logout_button_tray_| is no longer needed because there is no such tray. (confirmed with @sgabriel that |logout_button_tray_| will always be the left most one). Note that this is a partial revert of code added in https://codereview.chromium.org/2147143002/. BUG=657211 Review-Url: https://codereview.chromium.org/2582923002 Cr-Commit-Position: refs/heads/master@{#439398}
-
zhongyi authored
Server push cancellation: add a setter method for server push delegate in HttpNetworkSession. Plumb the server push delegate to QuicStreamFactory/SpdySessionPool so that QuicChromiumClientSession/SpdySession takes server push delegate in contructor. BUG=232040 Review-Url: https://codereview.chromium.org/2521573006 Cr-Commit-Position: refs/heads/master@{#439397}
-
fs authored
When encountering a sequence of ']]]' at the end of a CDATA section, we should only buffer one ']' (the first one) and "remember" the other two. The states exists in the spec[1][2][3] nowadays, so sync the names and remove the comment about the states not being in the spec. Fixes two subtests of wpt/html/syntax/parsing/html5lib_tests21.html. [1] https://html.spec.whatwg.org/multipage/syntax.html#cdata-section-state [2] https://html.spec.whatwg.org/multipage/syntax.html#cdata-section-bracket-state [3] https://html.spec.whatwg.org/multipage/syntax.html#cdata-section-end-state BUG=674496 Review-Url: https://codereview.chromium.org/2576373002 Cr-Commit-Position: refs/heads/master@{#439396}
-
zhongyi authored
Change http_server_properties_manager to always persist data to disk after 60s from the receiving update request. All the update requests received during the gap will bundled to the first request. BUG=670519 Review-Url: https://codereview.chromium.org/2554723003 Cr-Commit-Position: refs/heads/master@{#439395}
-
bashi authored
Before this CL we don't resume suspended renderer when the suspension was initiated by memory coordinator (not purge+suspend experiment). We should resume suspended renderer when the memory state becomes NORMAL. BUG=674784 Review-Url: https://codereview.chromium.org/2577313002 Cr-Commit-Position: refs/heads/master@{#439394}
-
djd authored
This includes the luci-go repo luci/luci-go@e12a0ea Isolate sha1s were taken from the following builds: https://build.chromium.org/p/chromium.infra/builders/infra-continuous-precise-64/builds/5079 https://build.chromium.org/p/chromium.infra/builders/infra-continuous-mac-10.10-64/builds/4186 https://build.chromium.org/p/chromium.infra/builders/infra-continuous-win-64/builds/5006 BUG=671592,598990 Review-Url: https://codereview.chromium.org/2581823002 Cr-Commit-Position: refs/heads/master@{#439393}
-
dbeam authored
R=calamity@chromium.org BUG=none CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:closure_compilation Review-Url: https://codereview.chromium.org/2586813002 Cr-Commit-Position: refs/heads/master@{#439392}
-
ericwilligers authored
The test used setTimeout, and relied on precise timing. We now use testharness.js, and no longer rely on callback timing. BUG=248938,664857,674715 Review-Url: https://codereview.chromium.org/2582713002 Cr-Commit-Position: refs/heads/master@{#439391}
-
ssid authored
This adds new method in MemoryDumpProvider interface PollFastMemoryTotal which is used for polling memory totals in process. The dump provider has to enable this feature while registration. For Simplicity of polling logic the dump providers supporting polling must not have task runner affinity. Polling will be done on dump thread. BUG=607533 Review-Url: https://codereview.chromium.org/2537363003 Cr-Commit-Position: refs/heads/master@{#439390}
-
tzik authored
This CL assigns TaskType::UserInteraction to the popup menu event and notification event. For Notification API event, the spec doesn't specify the task source explicitly. TaskType::UserInteraction should be the best fit here. https://notifications.spec.whatwg.org/ For popup menus, the event has non-web event source. TaskType::UserInteraction is the best fit here too. BUG=624696 Review-Url: https://codereview.chromium.org/2589493003 Cr-Commit-Position: refs/heads/master@{#439389}
-
dpranke authored
Before Gitiles bug 82 was fixed, Gitiles did not render relative URLs correctly on branches, so the GN docs had hard-coded absolute URLs. That bug is now fixed, so this updates the docs. R=brettw@chromium.org Review-Url: https://codereview.chromium.org/2483673002 Cr-Commit-Position: refs/heads/master@{#439388}
-
aazzam authored
Made implementation of CSSPropertyAPI for the will change property. The logic for this was taken out of CSSPropertyParser.cpp and moved into CSSPropertyAPIWillChange.cpp. Also fixed error in CSSPropertyDescriptor.cpp.tmpl which meant only one class could be implemented (missing comma in array). BUG=668012 Review-Url: https://codereview.chromium.org/2550313003 Cr-Commit-Position: refs/heads/master@{#439387}
-
- 18 Dec, 2016 11 commits
-
-
tzik authored
These tasks should be posted as TaskType::UserInteraction as specified on the spec. https://html.spec.whatwg.org/multipage/forms.html#common-input-element-events BUG=624696 Review-Url: https://codereview.chromium.org/2580243002 Cr-Commit-Position: refs/heads/master@{#439386}
-
tzik authored
This CL assigns TaskType to ContentSecurityPolicy::reportViolation and NetworkStateNotifier::notifyObservers. For CSP, the spec doesn't explicitly specify the task source. However, since it's a fetch request, TaskType::Networking should be the best fit. http://wicg.github.io/reporting/#try-delivery For NetworkStateNotifier, the spec specifies it should be TaskType::Networking. https://wicg.github.io/netinfo/#dependencies-and-definitions BUG=624696 Review-Url: https://codereview.chromium.org/2584253002 Cr-Commit-Position: refs/heads/master@{#439385}
-
dpranke authored
In order to roll GN 8897c835..c99acd65 (r436733:r439377) and pick up the following changes: 8d1f54ef Revert GN declare_args() change. a0835eec tracing: split trace event filter classes out of TraceLog 3a5f1623 Restore clang-format formatting. dc72ee94 Make base::Value::TYPE a scoped enum. cdeaacd4 Clean formatting after http://crrev.com/2544803002/. db24b9e6 Cleanup remaining class/struct fwd declarations TBR=brettw@chromium.org Review-Url: https://codereview.chromium.org/2588633002 Cr-Commit-Position: refs/heads/master@{#439384}
-
tzik authored
The spec says File API should use its own FileReading task source. https://w3c.github.io/FileAPI/#blobreader-task-source OTOH, FileSystem API spec doesn't specify the task source to use explicitly. However, since it's closely related to File API, FileSystem API should also use TaskType::FileReading. https://wicg.github.io/entries-api/ BUG=624696 Review-Url: https://codereview.chromium.org/2584233002 Cr-Commit-Position: refs/heads/master@{#439383}
-
tzik authored
This CL assigns PostedMessage task type to onmessage event triggered by MessagePort::postMessage(). The spec says each MessagePort has its own queue. However, Blink is not yet ready to do it. TaskType::PostedMessage implies a single shared queue as an alternative. https://html.spec.whatwg.org/multipage/comms.html#message-ports BUG=624696 Review-Url: https://codereview.chromium.org/2586093002 Cr-Commit-Position: refs/heads/master@{#439382}
-
tzik authored
This CL add explicit TaskTypes for tasks posted by Document itself. On Document::addConsoleMessage, since it's an Inspector message, this should not be throttled or suspended, so its TaskType should be Unthrottled. On Document::setAutofocusElement, the TaskType should be UserInteraction according to the spec: https://html.spec.whatwg.org/multipage/forms.html#autofocusing-a-form-control:-the-autofocus-attribute BUG=624696 Review-Url: https://codereview.chromium.org/2583003002 Cr-Commit-Position: refs/heads/master@{#439381}
-
ssid authored
BUG=607533 Review-Url: https://codereview.chromium.org/2542853002 Cr-Commit-Position: refs/heads/master@{#439380}
-
skia-deps-roller authored
https://skia.googlesource.com/skia.git/+log/113d05fa7b26..d4b9c35d9d8c $ git log 113d05fa7..d4b9c35d9 --date=short --no-merges --format='%ad %ae %s' 2016-12-18 msarett Fix iOS build Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, see: http://www.chromium.org/developers/tree-sheriffs/sheriff-details-chromium#TOC-Failures-due-to-DEPS-rolls CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_trusty_blink_rel TBR=rmistry@google.com Review-Url: https://codereview.chromium.org/2588613002 Cr-Commit-Position: refs/heads/master@{#439379}
-
tzik authored
This CL specifies the TaskType of a task posted by DataTransferItem as UserInteraction, instead of using the default Unspecified TaskType. The spec does not specify this explicitly, but TaskType::UserInteraction should be the best fit here. https://html.spec.whatwg.org/multipage/interaction.html#dom-datatransferitem-getasstring BUG=624696 Review-Url: https://codereview.chromium.org/2585073002 Cr-Commit-Position: refs/heads/master@{#439378}
-
dgozman authored
BUG=664683 TBR=pfeldman Review-Url: https://codereview.chromium.org/2573423002 Cr-Commit-Position: refs/heads/master@{#439377}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/bde1ec9c..74c24dd2 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_trusty_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/2584283002 Cr-Commit-Position: refs/heads/master@{#439376}
-