Roll chromium_revision 52f78b1683..bfb0b77f2c (561464:562200)

Change log: 52f78b1683..bfb0b77f2c
Full diff: 52f78b1683..bfb0b77f2c

Roll chromium third_party 008fb7071c..0d2b36d3cf
Change log: 008fb7071c..0d2b36d3cf

Changed dependencies:
* src/base: 40343e3fbc..52cd03ae2f
* src/build: bd04ef7233..39cffdabab
* src/buildtools: 94288c26d2..893eb86b02
* src/ios: de97874e25..862c941a16
* src/testing: b4c21a01c2..8133f73370
* src/third_party/boringssl/src: https://boringssl.googlesource.com/boringssl.git/+log/69271b5d4f..5601bdac1a
* src/third_party/catapult: https://chromium.googlesource.com/catapult.git/+log/1986f5a957..0043a4a254
* src/third_party/depot_tools: 4e9b50ab86..f16fdf3165
* src/third_party/libvpx/source/libvpx: e27a331778..36825590ba
* src/tools: c923d1173c..99de29398b
* src/tools/swarming_client: 833f5ebf89..3543e21830
DEPS diff: 52f78b1683..bfb0b77f2c/DEPS

No update to Clang.

TBR=buildbot@webrtc.org,marpan@webrtc.org,
BUG=None
CQ_INCLUDE_TRYBOTS=master.internal.tryserver.corp.webrtc:linux_internal
NO_AUTOIMPORT_DEPS_CHECK=true

Change-Id: I4baa7a38623823759606c90813a4bf535245f390
Reviewed-on: https://webrtc-review.googlesource.com/79191
Reviewed-by: WebRTC Buildbot <buildbot@webrtc.org>
Commit-Queue: Oleh Prypin <oprypin@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#23405}
This commit is contained in:
Autoroller
2018-05-28 00:43:41 -07:00
committed by Commit Bot
parent 0c2e8ce212
commit 123ab64bc5
23 changed files with 1002 additions and 894 deletions

View File

@ -101,6 +101,8 @@ chrome.automation.RoleType = {
COMBO_BOX_GROUPING: 'comboBoxGrouping',
COMBO_BOX_MENU_BUTTON: 'comboBoxMenuButton',
COMPLEMENTARY: 'complementary',
CONTENT_DELETION: 'contentDeletion',
CONTENT_INSERTION: 'contentInsertion',
CONTENT_INFO: 'contentInfo',
DATE: 'date',
DATE_TIME: 'dateTime',
@ -1198,6 +1200,20 @@ chrome.automation.AutomationNode.prototype.backgroundColor;
*/
chrome.automation.AutomationNode.prototype.colorValue;
/**
* Indicates node text is subscript.
* @type {boolean}
* @see https://developer.chrome.com/extensions/automation#type-subscript
*/
chrome.automation.AutomationNode.prototype.subscript;
/**
* Indicates node text is superscript.
* @type {boolean}
* @see https://developer.chrome.com/extensions/automation#type-superscript
*/
chrome.automation.AutomationNode.prototype.superscript;
/**
* Indicates node text is bold.
* @type {boolean}
@ -1537,6 +1553,14 @@ chrome.automation.AutomationNode.prototype.findAll = function(params) {};
*/
chrome.automation.AutomationNode.prototype.matches = function(params) {};
/**
* @param {string} searchStr
* @param {boolean} backward
* @return {!chrome.automation.AutomationNode}
* @see https://developer.chrome.com/extensions/automation#method-getNextTextMatch
*/
chrome.automation.AutomationNode.prototype.getNextTextMatch = function(searchStr, backward) {};
/**
* Get the automation tree for the tab with the given tabId, or the current tab