- 11 Jul, 2017 12 commits
-
-
Jeff Carpenter authored
After landing the CL enabling WPT tests that don't necessarily correspond to real files (crrev.com/c/461722/), 4 Timeout TestExpectations from that CL turned up as Failures on WebKit Linux Trusty Leak. Bug: 703837 TBR: qyearsley@chromium.org Change-Id: Ideb2d49c866f04d5105c0ad30446b6c92124f0f2 Reviewed-on: https://chromium-review.googlesource.com/566019 Commit-Queue: Jeff Carpenter <jeffcarp@chromium.org> Reviewed-by:
Quinten Yearsley <qyearsley@chromium.org> Reviewed-by:
Bret Sepulveda <bsep@chromium.org> Cr-Commit-Position: refs/heads/master@{#485464}
-
pdfium-deps-roller@chromium.org authored
https://pdfium.googlesource.com/pdfium.git/+log/92e2276a8be4..00c3cfdbae07 $ git log 92e2276a8..00c3cfdba --date=short --no-merges --format='%ad %ae %s' 2017-07-10 npm Roll FreeType to c56d8851ea987023cc73981a70d261b3f6427545 Created with: roll-dep src/third_party/pdfium 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 TBR=dsinclair@chromium.org Change-Id: Id8dfcbbe74abfc5aec38128e39f5df4876d7a31b Reviewed-on: https://chromium-review.googlesource.com/565943 Reviewed-by: <pdfium-deps-roller@chromium.org> Commit-Queue: <pdfium-deps-roller@chromium.org> Cr-Commit-Position: refs/heads/master@{#485463}
-
dougt authored
BUG=703369 Review-Url: https://codereview.chromium.org/2969603002 Cr-Commit-Position: refs/heads/master@{#485462}
-
lukasza authored
Main change in this CL ====================== For a long time now the DOMAutomationController::automation_id_ value has not been used for its original purpose (associating sends with particular "jobs" / "automations" / render_views). Right now, the argument of domAutomationController::send is always routed back to WebContents (not to any more granular/specific destination). Right now the DOMAutomationController::automation_id_ field is still used to enable/disable domAutomationController::send - the send only works if setAutomationId was called previously (with a value different than MSG_ROUTING_NONE). In fact - in almost all cases, the scripts say: domAutomationController.setAutomationId(0) domAutomationController.send(...) This CL removes DOMAutomationController::automation_id_ field and makes domAutomationController.send work unconditionally. After this CL lands, we will be able to remove all calls to setAutomationId (after this CL they will be no-ops). Other changes needed by this CL =============================== The CL needed to make the following, additional fixes: 1. ExecuteScript (in content/public/test/browser_test_utils.h / .cc) appends "; domAutomationController.send(0);" to the script provided by the caller. This extra value would be usually ignored before this CL, but gets in the way after this CL (e.g. can get confused with other calls to domAutomationController.send(...)). To account for this a new ExecuteScriptAsync function has been provided in this CL. Ideally ExecuteScript would become ExecuteScriptAsync, but there are multiple tests that depend on the extra pumping of the message loop that happens in ExecuteScript and not in ExecuteScriptAsync. Therefore, ExecuteScriptAsync is a lesser evil, that minimizes amount of changes needed right now. To make sure that ExecuteScript stops waiting after the call to |domAutomationController.send(...)| that is added by ExecuteScript (and not by some other, accidental send) this CL sends a GUID that is unique in each call to ExecuteScript and verifies that the same GUID has been received back. This change has flushed out a few additional cases where ExecuteScriptAsync needs to be used as well as cases where a call to domAutomationController.send can be removed. The following callers of ExecuteScript had to be switched to call ExecuteScriptAsync instead: - ExecuteWebUIResourceTest (consumes messages via DOMMessageQueue and relies on the fact that this queue is not stumped upon). Additionally, it turned out that client_renderer.js and media_internals.js (used by WebUIResourceBrowserTest tests) were always erroring out before this CL (this has gone unnoticed, because the "FAILURE" string would have been eaten by ExecuteScript). - SecurityExploitBrowserTest.InterstitialCommandFromUnderlyingContent (otherwise the artificual "0" ends up in interstitial->last_command()). - captive_portal_browsertest.cc (otherwise we trigger a CHECK in captive_portal_blocking_page.cc: Command 0 isn't handled by the captive portal interstitial). Note that CaptivePortalBrowserTest / ShowCaptivePortalInterstitialOnCertError was relying on message pumping done by ExecuteScript. This was fragile - the timing of exiting the message pump was not related to the timing of the event the test needs to wait for. This was broken after going through ExecuteScriptAsync. This is fixed by introducing an explicit TabActivationWaiter. - ExecuteScriptInBackgroundPageNoWait (otherwise DOMMessageQueue used by ProcessManagerBrowserTest.ExtensionProcessReuse would have unexpectedly gotten a value sent by ExecuteScript, rather than the value send by the script itself; additionally, calling Execute*Unmodified*Script here makes sense in a function named "NoWait" - ExecuteScript would have waited). - saml_browsertest.cc - there was undesired interaction with listening to the value sent by SetupAuthFlowChangeListener. - ChromeSitePerProcessTest.PopupWindowFocus - this would conflict with domAutomationController.send from chrome/test/data/page_with_focus_events.html The following callers of ExecuteScript were needlessly calling domAutomationController.send from the script: - ProxyAuthOnUserBoardScreenTest.ProxyAuthDialogOnUserBoardScreen - WizardControllerTest::JSExecute - NavigationControllerBrowserTest.PostInSubframe - SitePerProcessBrowserTest.NavigateRemoteFrameToBlankAndDataURLs 2. autofill_interactive_uitest.cc used to call domAutomationController.send(true) from onfocus DOM event handlers. This would confuse expectations of ExecuteScriptAndExtractInt running "domAutomationController.send(42)" (it would sometimes receive a boolean rather than int back). This is fixed by using a one-time onfocus handlers (rather than permanent handlers) from FocusFieldByName method. 3. After the changes some GeolocationBrowserTest would receive "geoposition-updated" message twice - once from the geoSuccessCallbackWithResponse callback (from chrome/test/data/geolocation/basic_geolocation.js) and once from a checkIfGeopositionUpdated function. There is no need to resolve the race via checkIfGeopositionUpdated if we start listening (via DOMMessageQueue) *before* trigerring an update in the geo position. This way we can keep just the callback and remove the no longer needed checkIfGeopositionUpdated function. 4. content::IsWebcamAvailableOnSystem (via kHasVideoInputDeviceOnSystem) would call domAutomationController.send(...) twice before this CL. After this CL it is only called once. Other, opportunistic changes ============================ I've noticed that DOMMessageQueue::message_loop_runner_ can be null and therefore uses of this field need to be guarded. This required remembering result of DOMMessageQueue::RenderProcessGone, so that it still has an effect when there was no runner when the renderer crash notification happened. BUG=662543 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_site_isolation Review-Url: https://codereview.chromium.org/2478803003 Cr-Commit-Position: refs/heads/master@{#485461}
-
Mike Dougherty authored
BUG=581021 Change-Id: Id6d7ab0cabc525cd575f6140281fdf5dc213a2b9 Reviewed-on: https://chromium-review.googlesource.com/565786Reviewed-by:
Eugene But <eugenebut@chromium.org> Commit-Queue: Mike Dougherty <michaeldo@chromium.org> Cr-Commit-Position: refs/heads/master@{#485460}
-
Mark Mentovai authored
This is needed for 10.13 SDK compatibility. See https://github.com/google/google-toolbox-for-mac/commit/ec72a2bc500a716369c383837bffdc7d2a22855b. 2ef3625a9193 s/GTMAddressBook/GTMABAddressBook/ a86965088edd First pass removing all deprecated uses of GTM_IPHONE_USE_SENTEST 157a381522da Merge pull request #129 from thomasvl/sentest_cleanup 9656673748be Bump the pod version to do a release 857a3f0ac59d Merge pull request #131 from thomasvl/update 5207aee433c5 Change file type from UTF16 to ASCII cc2054645ca7 Merge pull request #134 from sergiocampama/type 94d4ccfc1589 Change include to import for GTMDefines ca53d4727a2a Merge pull request #135 from sergiocampama/copy 9822411a0fcb Remove trailing whitespaces e0fc2bad1e98 Merge pull request #136 from sergiocampama/white 89055f58cb50 Support for tvOS (#139) 4ae69e6f0b00 Fixed PodSpec for tvOS (#140) d49d04d53abe Added -Wreserved-id-macro and but exclude existing nonconforming macros (#141) d9d3b228b735 Avoid error from reserved macro name for GTMRegex.h 7ae58d8e92ef Provides a testing entitlements files c867eb4055d7 Add default_subspecs to help avoid testing code ended up in apps ec72a2bc500a 10.13 SDK (and iOS 11 equivalent) compatibility for GTM Bug: 740712 Change-Id: Ia795ff53e53c53067b560bcb9111063507ab2455 Reviewed-on: https://chromium-review.googlesource.com/565770Reviewed-by:
Trent Apted <tapted@chromium.org> Commit-Queue: Mark Mentovai <mark@chromium.org> Cr-Commit-Position: refs/heads/master@{#485459}
-
dougt authored
This CL is based on the work tmoniuszko@opera.com did in CL 2962633004 which found a regression in a changed to ROLE_SYSTEM_LIST (see https://codereview.chromium.org/2909853002). BUG=703369 Review-Url: https://codereview.chromium.org/2969743002 Cr-Commit-Position: refs/heads/master@{#485458}
-
rdevlin.cronin authored
If a method is handled by a custom hook, we won't notify the browser (where we normally would with an API request), and so the activity log won't be updated. Add support for activity logging with native binding. If a request is handled by a custom hook and a request is not sent to the browser, notify the activity logger (which will send the information along to the browser process). This matches the logic we currently have in the JS bindings. Add unit tests for the same. In addition to the unit tests, this fixes ActivityLogApiTest.TriggerEvent with native bindings enabled. BUG=653596 Review-Url: https://codereview.chromium.org/2962093002 Cr-Commit-Position: refs/heads/master@{#485457}
-
megjablon authored
BUG=737926 Review-Url: https://codereview.chromium.org/2969843004 Cr-Commit-Position: refs/heads/master@{#485456}
-
Emil A Eklund authored
Move the CanRenderBorderImage method from LayoutObject to ComputedStyle. It only depends on information from ComputedStyle and it is not virtual. Change-Id: I175d4b21b8d1e4f2f8e5535fc063dc65be0b841f Reviewed-on: https://chromium-review.googlesource.com/565655Reviewed-by:
Walter Korman <wkorman@chromium.org> Commit-Queue: Emil A Eklund <eae@chromium.org> Cr-Commit-Position: refs/heads/master@{#485455}
-
hejq authored
We apply EnablePlayStoreAppSearch to decide whether to: - search for uninstalled apps from Play Store; - show a proper badge in the Play Store app result; - show the review score and price of every searched app. Currently using the IsFullscreenAppListEnabled flag is incorrect. BUG=736552 Review-Url: https://codereview.chromium.org/2961923002 Cr-Commit-Position: refs/heads/master@{#485454}
-
Quinten Yearsley authored
Bug: 692811 Change-Id: Ic1a061020c1dc502655646c7a6e3ae80aee14535 Reviewed-on: https://chromium-review.googlesource.com/564681Reviewed-by:
Dirk Pranke <dpranke@chromium.org> Commit-Queue: Quinten Yearsley <qyearsley@chromium.org> Cr-Commit-Position: refs/heads/master@{#485453}
-
- 10 Jul, 2017 28 commits
-
-
Reilly Grant authored
This change enables generation of both Mojo JS bindings styles in the //third_party/WebKit/public:android_mojo_bindings target and updates the LayoutTests for the MediaSession API to use the new style. Bug: 699569 Change-Id: Ifebdcbe5cffffd61d3dfcb48b590c447416d8d7a Reviewed-on: https://chromium-review.googlesource.com/563704Reviewed-by:
danakj <danakj@chromium.org> Reviewed-by:
Yuzhu Shen <yzshen@chromium.org> Commit-Queue: Reilly Grant <reillyg@chromium.org> Cr-Commit-Position: refs/heads/master@{#485452}
-
Stefan Zager authored
BUG=730398 R=pdr@chromium.org Change-Id: I61868a97e920d0131d672952b7d570181da11537 Reviewed-on: https://chromium-review.googlesource.com/565806Reviewed-by:
Philip Rogers <pdr@chromium.org> Commit-Queue: Stefan Zager <szager@chromium.org> Cr-Commit-Position: refs/heads/master@{#485451}
-
Christopher Cameron authored
In GpuImageDecodeCache::UploadImageIfNecessary, while we DCHECK that uploaded_image is non-nullptr, we never actually dereferenced that pointer until we added the call to uploaded_image->makeColorSpace. This dereference has become the top crasher on Android, indicating that the DCHECK was more hope than reality. Bug: 738898 Change-Id: I02ba9098836115a7cde2f5370a0a4e1a72c23d85 Reviewed-on: https://chromium-review.googlesource.com/565010 Commit-Queue: ccameron chromium <ccameron@chromium.org> Reviewed-by:
Vladimir Levin <vmpstr@chromium.org> Cr-Commit-Position: refs/heads/master@{#485450}
-
edchin authored
1) Uses the proper title for tab grid tab cells. 2) Properly sets snapshot image. It was previously setting the button's image rather than the imageView. Bug: 686770 Change-Id: I1f400f9b543528355f3014f3e1503e50166b33e9 Reviewed-on: https://chromium-review.googlesource.com/564346 Commit-Queue: Ed Chin <edchin@chromium.org> Reviewed-by:
Ed Chin <edchin@chromium.org> Reviewed-by:
Jean-François Geyelin <jif@chromium.org> Reviewed-by:
Mark Cogan <marq@chromium.org> Cr-Commit-Position: refs/heads/master@{#485449}
-
Bo Liu authored
This is partial revert of r457679. Some old thirdparty android devices do not deal well with bindService intent with a Parceable. So make LinkerParams explicitly set fields in a Bundle rather than pass it as a Parceable. BUG=740653 Change-Id: I0ad409a20c638ec4ff91c4331a189aee381edf7b Reviewed-on: https://chromium-review.googlesource.com/565165Reviewed-by:
Jay Civelli <jcivelli@chromium.org> Commit-Queue: Bo Liu <boliu@chromium.org> Cr-Commit-Position: refs/heads/master@{#485448}
-
pfeldman authored
Revert of [CacheStorage] [IndexedDB] [DevTools] Added refresh button to category view of cache storage and in… (patchset #2 id:20001 of https://codereview.chromium.org/2916193003/ ) Reason for revert: The UI does not look right. Original issue's description: > Added refresh button to category view of cache storage and indexeddb > > BUG=727920, 727897 > > Review-Url: https://codereview.chromium.org/2916193003 > Cr-Commit-Position: refs/heads/master@{#478099} > Committed: https://chromium.googlesource.com/chromium/src/+/423c0eff455de15f2e3f0cc6c54002fa9b7db5a6 TBR=dmurph@chromium.org,dgozman@chromium.org,eostroukhov@chromium.org,kristipark@chromium.org # Not skipping CQ checks because original CL landed more than 1 days ago. BUG=727920, 727897 Review-Url: https://codereview.chromium.org/2973113002 Cr-Commit-Position: refs/heads/master@{#485447}
-
Tommy C. Li authored
Previously, we determined which part of the URL the match was in by by searching the formatted URL string (in string16 form) for delimiters. After this refactor, we do this by using the "official" GURL component offsets adjusted for URL formatting. This is good both as a refactor, and also to lay the groundwork for adding |match_in_subdomain| and |match_in_path| flags. This CL doesn't actually add the above flags, and is intended to provide identical functionality as before (which is why no tests changed). Bug: 732582, 595524, 448659 Change-Id: I133c2ecb462597941b7284fd88f99e55f341f6b4 Reviewed-on: https://chromium-review.googlesource.com/564300 Commit-Queue: Tommy Li <tommycli@chromium.org> Reviewed-by:
Justin Donnelly <jdonnelly@chromium.org> Cr-Commit-Position: refs/heads/master@{#485446}
-
dpapad authored
BUG=739964 Review-Url: https://codereview.chromium.org/2975713002 Cr-Commit-Position: refs/heads/master@{#485445}
-
Christopher Cameron authored
These will be rebaselined after the roll. TBR=fmatila Bug: 739559 Change-Id: I08c06b60ba9a8d2e1a9dc973c29d89b9a054ba83 Reviewed-on: https://chromium-review.googlesource.com/565905Reviewed-by:
Florin Malita <fmalita@chromium.org> Commit-Queue: ccameron chromium <ccameron@chromium.org> Cr-Commit-Position: refs/heads/master@{#485444}
-
Stefan Zager authored
In the non-root-layer case, the CLM's main graphics layer will have a compositing container with a scroll origin, but in the root layer case, it makes no sense to give the root graphics layer a non-zero position. This fixes most or all of the pixel diffs in the compositing/rtl/ layout tests with RLS enabled. Those tests still need to be rebaselined for text diffs. BUG=542432 R=skobes@chromium.org Change-Id: I1b37d8c96dd3328754770e4a7249c22b87550e14 Reviewed-on: https://chromium-review.googlesource.com/563487Reviewed-by:
Steve Kobes <skobes@chromium.org> Commit-Queue: Stefan Zager <szager@chromium.org> Cr-Commit-Position: refs/heads/master@{#485443}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/cb9577c6..15d0e7ca 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;master.tryserver.chromium.android:android_optional_gpu_tests_rel TBR=hablich@chromium.org,machenbach@chromium.org,kozyatinskiy@chromium.org Change-Id: Ia581bb5cf0a8584bf42d201015f833b4936ced9e Reviewed-on: https://chromium-review.googlesource.com/565766Reviewed-by:
v8 autoroll <v8-autoroll@chromium.org> Commit-Queue: v8 autoroll <v8-autoroll@chromium.org> Cr-Commit-Position: refs/heads/master@{#485442}
-
catapult-deps-roller@chromium.org authored
https://chromium.googlesource.com/external/github.com/catapult-project/catapult.git/+log/f8681638b945..601f74b9033b $ git log f8681638b..601f74b90 --date=short --no-merges --format='%ad %ae %s' 2017-07-10 sullivan Add an API to get bug and bisect data. Created with: roll-dep src/third_party/catapult 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.chromium.android:android_optional_gpu_tests_rel TBR=sullivan@chromium.org Change-Id: Ided9c9760b1f6dd5e0728098b1e5deadba6d9b9d Reviewed-on: https://chromium-review.googlesource.com/565356 Reviewed-by: <catapult-deps-roller@chromium.org> Commit-Queue: <catapult-deps-roller@chromium.org> Cr-Commit-Position: refs/heads/master@{#485441}
-
Sergey Ulanov authored
Several fixes to make net_unittests compile for Fuchsia: 1. Added cert_database_fuchsia.cc and test_root_certs_fuchsia.cc. 2. Disabled Kerberos (not implemented on Fuchsia). 3. Updated CertVerifyProc to use CreateCertVerifyProcBuiltin() with OS_FUCHSIA. Currently it uses DummySystemTrustStore, so cert verification will always fail. This will need to be fixed later, once Fuchsia adds an API for root certs store. 4. res_ninit() is not yet implemented, so res_init() is used instead. 5. Disabled DnsReloader. It relies on res_ninit() and it's unlikely to be useful on Fuchsia. Bug: 731302 Change-Id: I05cbb7a4b571d82894b7c62740fc2f5b36870214 Reviewed-on: https://chromium-review.googlesource.com/560050Reviewed-by:
Eric Roman <eroman@chromium.org> Commit-Queue: Sergey Ulanov <sergeyu@chromium.org> Cr-Commit-Position: refs/heads/master@{#485440}
-
takumif authored
This CL removes the media_route_provider_extension_id() getter from MediaRouterMojoImpl, which was previously being accessed by static-casting MediaRouter into MediaRouterMojoImpl. The getter in EventPageRequestManager is now used. It seems that we cannot simply hard-code the ID, since it's different between dev and release builds of the component extension. BUG=597778 BUG=727993 Review-Url: https://codereview.chromium.org/2970273002 Cr-Commit-Position: refs/heads/master@{#485439}
-
Fernando Serboncini authored
Related spec: https://drafts.fxtf.org/geometry/#DOMRect and: https://drafts.fxft.org/geometry/#DOMRectList Bug: 719246 Change-Id: I0322c12ab5c327b869e925a8c06fbfae6b659ad3 Reviewed-on: https://chromium-review.googlesource.com/559978 Commit-Queue: Fernando Serboncini <fserb@chromium.org> Reviewed-by:
Philip Jägenstedt <foolip@chromium.org> Cr-Commit-Position: refs/heads/master@{#485438}
-
imcheng authored
- Removed method declarations that are not defined. - Removed PresentationFrameManager. There is not much reason to keep it since most of the logic is just delegating from PSDImpl. - Push the URL validity check for screen availability to PSImpl. BUG=736557 Review-Url: https://codereview.chromium.org/2958663002 Cr-Commit-Position: refs/heads/master@{#485437}
-
Megan Jablonski authored
SaveFrameWithHeaders should use SPLIT_WANT_NONEMPTY to ignore terminating CRLF separators. Bug: 738161 Change-Id: Id5deaee597baa48fd90ac447f020094072ba707d Reviewed-on: https://chromium-review.googlesource.com/563820 Commit-Queue: Megan Jablonski <megjablon@chromium.org> Reviewed-by:
Charlie Reis <creis@chromium.org> Cr-Commit-Position: refs/heads/master@{#485436}
-
Daniel Erat authored
Remove calls to content::BrowserThread::GetBlockingPool()->FlushForTesting() and base::RunLoop().RunUntilIdle() from TearDown(). content::TestBrowserThreadBundle is documented as already running remaining tasks during destruction. BUG=667892 Change-Id: I0368a0f94e9ddbfde284b18e3222894ee1d80b55 Reviewed-on: https://chromium-review.googlesource.com/560643Reviewed-by:
Steven Bennetts <stevenjb@chromium.org> Reviewed-by:
Satoru Takabayashi <satorux@google.com> Commit-Queue: Dan Erat <derat@chromium.org> Cr-Commit-Position: refs/heads/master@{#485435}
-
Steven Bennetts authored
This moves the preview pane into a separate element in preparation for sharing UI between Settings and login/oobe. Bug: 730031 Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation Change-Id: I7dae1a01579e89ca8f4b8fdc3be7393b2310c869 Reviewed-on: https://chromium-review.googlesource.com/557462Reviewed-by:
Tommy Li <tommycli@chromium.org> Commit-Queue: Steven Bennetts <stevenjb@chromium.org> Cr-Commit-Position: refs/heads/master@{#485434}
-
Peter Collingbourne authored
An upcoming version of clang removes the ability to suppress availability warnings by redeclaring functions. The new way to suppress warnings is to either annotate the caller with an availability attribute or enclose the function reference in an "if (@available)" block. But we don't need to do any of that for crdmg. According to source code comments, the executable only works with 10.10+, so we can adjust the minimum SDK version to match. Bug: 735328 Change-Id: Ib735ffe60c67681b2d13f5dbbfddb6aa6b928248 Reviewed-on: https://chromium-review.googlesource.com/564290Reviewed-by:
Robert Sesek <rsesek@chromium.org> Reviewed-by:
Jialiu Lin <jialiul@chromium.org> Reviewed-by:
Sidney San Martin <sdy@chromium.org> Commit-Queue: Peter Collingbourne <pcc@chromium.org> Cr-Commit-Position: refs/heads/master@{#485433}
-
raymes authored
We were originally planning to make content settings type a string, but that effort was never completed. This comment is just adding confusion at the moment. Review-Url: https://codereview.chromium.org/2965183002 Cr-Commit-Position: refs/heads/master@{#485432}
-
btolsch authored
This change enables DiscoveryNetworkMonitor to work on Windows. It supports both MAC addresses and WiFi SSIDs for the network ID. Bug: 698943 Change-Id: I0c94743fd51019438fd53472f38a2d83e21a3246 Reviewed-on: https://chromium-review.googlesource.com/527774 Commit-Queue: Brandon Tolsch <btolsch@chromium.org> Reviewed-by:
Kevin Marshall <kmarshall@chromium.org> Reviewed-by:
Derek Cheng <imcheng@chromium.org> Cr-Commit-Position: refs/heads/master@{#485431}
-
rbpotter authored
Remove remaining global javascript functions from the print preview native layer and convert to sendWithPromise and web UI events. BUG=717296 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:closure_compilation Review-Url: https://codereview.chromium.org/2969383003 Cr-Commit-Position: refs/heads/master@{#485430}
-
Takumi Fujimoto authored
Update from v1.0.15 by running third_party/polymer/v1_0/reproduce.sh. This includes the fix for a bug in which the slider cannot be LTR on a RTL page. Bug: 736954 Change-Id: I73f77fb0a053ec7f00b996a125f853848fbc56b6 Reviewed-on: https://chromium-review.googlesource.com/565067Reviewed-by:
Demetrios Papadopoulos <dpapad@chromium.org> Commit-Queue: Takumi Fujimoto <takumif@chromium.org> Cr-Commit-Position: refs/heads/master@{#485429}
-
justincarlson authored
metadata. We don't *actually* need this information for anything other than usage tracking, and having these printers actually *work* is more important that getting good metadata about them. BUG= Review-Url: https://codereview.chromium.org/2974103002 Cr-Commit-Position: refs/heads/master@{#485428}
-
Chris Cunningham authored
This CL plumbs the signal from the renderers through pipeline, ultiately arriving at WebMediaPlayerImpl where it will later be used to start/stop reporting of MediaCapabilities playback stats. Note: OnVideoNaturalSizeChange is still not obsoleted by OnVideoConfigChange because it possible to for natural size to change outside of a config change. Includes new unit and e2e tests. Bug: 695264 Change-Id: Ib04e13e2e8ab6b6974f2a9059466d7a87986b4b2 Reviewed-on: https://chromium-review.googlesource.com/541721Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Dale Curtis <dalecurtis@chromium.org> Commit-Queue: Chrome Cunningham <chcunningham@chromium.org> Cr-Commit-Position: refs/heads/master@{#485427}
-
pdfium-deps-roller@chromium.org authored
https://pdfium.googlesource.com/pdfium.git/+log/1437643bfaca..92e2276a8be4 $ git log 1437643bf..92e2276a8 --date=short --no-merges --format='%ad %ae %s' 2017-07-10 dsinclair Move core/fxge/ge to core/fxge. Created with: roll-dep src/third_party/pdfium 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 TBR=dsinclair@chromium.org Change-Id: I2dce82ab97dc5fa07c957aea334da2889c69f005 Reviewed-on: https://chromium-review.googlesource.com/565885 Reviewed-by: <pdfium-deps-roller@chromium.org> Commit-Queue: <pdfium-deps-roller@chromium.org> Cr-Commit-Position: refs/heads/master@{#485426}
-
Bruce Dawson authored
linker_verbose_tracking.py is a useful script for understanding why particular symbols and object files get pulled in to Chrome binaries on Windows. Previously this script did its tracking purely by object file name, which breaks down for things like mime_util.obj because there are *four* object files with that name. This change updates the script so that it tracks the chain of dependencies using fully-specified object file names - basically foo.lib(bar.obj) instead of just bar.obj. This avoids the dead-ends and misleading information that occasionally happened with the previous version. In order to make this usable (specifying a fully-qualified object file name to search for is unwieldy) the search string is now understood to be any sub-string of the object file name. The set of matches is printed so that the search can easily be refined. It works much better now. This was made necessary by the investigation of the linked bug. R=stanisc@chromium.org BUG=717103 Change-Id: I25682e6d5b534c69d3743456918c60d42f746e10 Reviewed-on: https://chromium-review.googlesource.com/565221 Commit-Queue: Bruce Dawson <brucedawson@chromium.org> Reviewed-by:
Stanislav Chiknavaryan <stanisc@chromium.org> Cr-Commit-Position: refs/heads/master@{#485425}
-