- 02 Aug, 2017 40 commits
-
-
Sean Kau authored
This CL implements the infrastructure for logging PrinterEventProtos. Only removals are logged right now. Successful setup and setup abandonment will be added in follow up CLs. Bug: 647283 Change-Id: I9b3dbd37ee0db486d1c55686f729f65009d03cb8 Reviewed-on: https://chromium-review.googlesource.com/590584 Commit-Queue: Sean Kau <skau@chromium.org> Reviewed-by:
Steven Bennetts <stevenjb@chromium.org> Reviewed-by:
Steven Holte <holte@chromium.org> Reviewed-by:
Xiaoqian Dai <xdai@chromium.org> Cr-Commit-Position: refs/heads/master@{#491222}
-
Xiaocheng Hu authored
This patch changes TextIterator and its hellper classes to use unsigned integers to get rid of unnecessary sign checks and type casts. Public functions of TextIterator remain untouched. Bug: 751353 Change-Id: I7b888d77fde272573c70f0a7fdbcc0410eec7e82 Reviewed-on: https://chromium-review.googlesource.com/595120 Commit-Queue: Xiaocheng Hu <xiaochengh@chromium.org> Reviewed-by:
Yoshifumi Inoue <yosin@chromium.org> Cr-Commit-Position: refs/heads/master@{#491221}
-
Dongseong Hwang authored
Forward native GMB command line flags for Guest session. BUG=475633 Change-Id: Id92d8f0a871d3c4ed644d24bb1951be5410c1dac Reviewed-on: https://chromium-review.googlesource.com/576456 Commit-Queue: Dongseong Hwang <dongseong.hwang@intel.com> Reviewed-by:
Dongseong Hwang <dongseong.hwang@intel.com> Reviewed-by:
Dan Erat <derat@chromium.org> Cr-Commit-Position: refs/heads/master@{#491220}
-
Dale Curtis authored
This is a reland of 1b5b36fd Original change's description: > Refactor watch time reporting into a mojo service. > > It's not sustainable to continue to stuff metrics into the MediaInternals > reporter. Since these values aren't even displayed in the internals page > they should go into their own mojo service. Which has the benefit of > being a much simpler implementation to boot (~250 lines less). > > We now have a mojo WatchTimeRecorder interface that the WatchTimeReporter > can send watch time updates too. It can also finalize individual keys with > this new interface. As with the old interface if the process dies the mojo > channel will close and we'll finalize all held values at destruction. > > BUG=716643, 735238 > TEST=new/existing unittests all pass > > Cq-Include-Trybots: master.tryserver.chromium.linux:linux_site_isolation > Change-Id: I0565422fbf70eba676dc22e08ea22cec88f09778 > Reviewed-on: https://chromium-review.googlesource.com/546903 > Commit-Queue: Dale Curtis <dalecurtis@chromium.org> > Reviewed-by: Xiaohan Wang <xhwang@chromium.org> > Reviewed-by: Nasko Oskov <nasko@chromium.org> > Reviewed-by: Mounir Lamouri <mlamouri@chromium.org> > Reviewed-by: Robert Kaplow <rkaplow@chromium.org> > Reviewed-by: Yuzhu Shen <yzshen@chromium.org> > Cr-Commit-Position: refs/heads/master@{#490187} TBR=xhwang,nasko,rkaplow,yzshen,mlamouri Bug: 716643, 735238 Change-Id: Ife0d1287dc4d8655ccbc98cdcbead48659eb685a Cq-Include-Trybots: master.tryserver.chromium.linux:linux_site_isolation Reviewed-on: https://chromium-review.googlesource.com/593855 Commit-Queue: Dale Curtis <dalecurtis@chromium.org> Reviewed-by:
Dale Curtis <dalecurtis@chromium.org> Cr-Commit-Position: refs/heads/master@{#491219}
-
Matt Wolenetz authored
Before this change, Chrome (with proprietary codecs enabled) supported FLAC-in-MP4 only in the regular src= media pipeline configuration. This change adds support for FLAC-in-MP4 in the MSE media pipeline to Chrome (with proprietary codecs enabled). The gating on proprietary codecs is not new (all of our existing src= and MSE demuxing of MP4 currently requires proprietary codecs in the build flags). This new FLAC-in-MP4 with MSE support is gated by a new kMseFlacInIsobmff base::Feature. Specifically, this change: * Adds MseFlacInIsobmff feature, disabled by default (it can be enabled by cmdline --enable-features=MseFlacInIsobmff). This flag controls MediaSource.isTypeSupported(..) and mediaSource.addSourceBuffer(..) for FLAC-in-MP4 mimetype+codec strings. * Adds MSE codec histogram tag to count successful addSourceBuffer() occurrences containing a mime type indicating FLAC codec. In Chrome MSE, no other bytestream besides MP4 supports addSourceBuffer with FLAC codec (and that support is new in this CL). * Updates StreamParserFactory to support (conditioned by feature flag) "flac" codec for each of audio/mp4 and video/mp4 mime types. * Adds |has_flac| parameter to MP4StreamParser ctor because FLAC-in-ISO has no standardized audio object type. * Adds support to MP4StreamParser for parsing 'fLaC' AudioSampleEntry and 'dfLa' FLACSpecificBox information to populate an AudioDecoderConfig. * Adds support to MP4StreamParser for higher-than-64k samplerate FLAC-in-ISO by parsing the FLACSpecificBox 'dfLa' containing the METADATA_BLOCK_STREAMINFO and using its sample rate instead of the one in the AudioSampleEntry. * Adds support to MP4StreamParser for 24-bit SampleFormat (the bear-flac*_frag.mp4 test files are 24-bit). * Enables partial append window trimming in MSE for FLAC-in-MP4 (conditioned by feature flag). This supports gapless FLAC playback using MSE. * Verifies the following information in 'dfLa' matches the info in the container and in the addSourceBuffer() call, giving parse error on failure: * fLaC AudioSampleEntry (or fLaC original format with cenc/sinf signalling) must only occur for SourceBuffers created with a FLAC-in-MP4 mimetype+codec. * dfLa must (only) occur for streams with fLaC AudioSampleEntry (or fLaC original format with cenc/sinf signalling). * First metadata block in dfLa must be METADATA_BLOCK_STREAMINFO * Only version 0 of dfLa is allowed * Only 0 dfLa Flags field is allowed * Channel count in METADATA_BLOCK_STREAMINFO must match that in the AudioSampleEntry. * Sample size in METADATA_BLOCK_STREAMINFO must match that in the AudioSampleEntry. * Includes new unit and browser tests: * content_browsertests: MediaSourceTest.Playback_AudioOnly_FLAC_MP4_Unsupported (the feature is forced off for this test, playback failure is verified) MediaSourceFlacInIsobmffTest.Playback_AudioOnly_FLAC_MP4_Supported (the feature is forced on for this test, playback success is verified) * media_unittests (with feature forced on): MP4StreamParserTest.Flac and Flac192kHz PipelineIntegrationTest.MediaSource_FlacInMp4_Hashed * Also includes audio/mp4 FLAC media capabilities browsertest case, though underlying support for CanDecode does not currently differentiate kFile vs kMediaSource (TODO added). Note, like other MSE ISO streams, the coded frame (eg, FLAC sample) duration is determined from the ISO boxes, not from inspecting (a possibly encrypted) coded frame header. This has similar consequence as other codecs in ISO of potential overlap-splicing or worse if the ISO metadata is incorrect with respect to the decode output of the coded frames. See also [1] for the FLAC-in-MP4 encapsulation specification (version 0.0.4 (draft) was current when this change was authored). Note, this change ignores the following metadata block types (see [2]) other than METADATA_BLOCK_STREAMINFO in the FLACSpecificBox (similar to current ffmpeg demuxing of FLAC-in-MP4): * Padding (this is stream, not timeline, padding) * Application * SeekTable * Vorbis Comment (informally, "FLAC tags") * CueSheet * Picture [1] https://github.com/xiph/flac/blob/master/doc/isoflac.txt [2] https://xiph.org/flac/format.html Intent to implement and ship: https://groups.google.com/a/chromium.org/forum/#!topic/blink-dev/ntoLfR7rbmE BUG=666000 TEST=Multiple new tests; also manual success with http://www.bbc.co.uk/taster/projects/radio-3-concert-sound2 Cq-Include-Trybots: master.tryserver.chromium.android:android_optional_gpu_tests_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 Change-Id: I70bbe30d78d4769243d886f4a521a6b03e08a890 Reviewed-on: https://chromium-review.googlesource.com/588249 Commit-Queue: Matthew Wolenetz <wolenetz@chromium.org> Reviewed-by:
Chrome Cunningham <chcunningham@chromium.org> Cr-Commit-Position: refs/heads/master@{#491218}
-
Alexei Filippov authored
Bug: 749415 Change-Id: I2c22ee57d2461c56124cf890f062cb50fec5d962 Reviewed-on: https://chromium-review.googlesource.com/591781 Commit-Queue: Alexei Filippov <alph@chromium.org> Reviewed-by:
Andrey Kosyakov <caseq@chromium.org> Cr-Commit-Position: refs/heads/master@{#491217}
-
Regan Hsu authored
This class encapsulates the creation of RemoteDevice objects, which are created asynchronously by RemoteDeviceLoader. Bug: Change-Id: Ib9b14fba32dd4bfd6ef384b887d5c269449ca2a8 Reviewed-on: https://chromium-review.googlesource.com/576308Reviewed-by:
Tim Song <tengs@chromium.org> Reviewed-by:
Kyle Horimoto <khorimoto@chromium.org> Commit-Queue: Kyle Horimoto <khorimoto@chromium.org> Cr-Commit-Position: refs/heads/master@{#491216}
-
Zijie He authored
This change adds EvaluateD3D() function to evaluate the D3D capability of the host, which is used by HostAttributes. If the binary crashes, or DXGI components cannot be initialized, No-DirectX-Capturer will be added to the host attributes. So client can decide to let the host opt-out the experiment. Bug: 741926 Change-Id: I48f842790b6e016efa541ab767b12d4d0e67edb6 Reviewed-on: https://chromium-review.googlesource.com/592996 Commit-Queue: Zijie He <zijiehe@chromium.org> Reviewed-by:
Joe Downing <joedow@chromium.org> Cr-Commit-Position: refs/heads/master@{#491215}
-
David Benjamin authored
https://boringssl.googlesource.com/boringssl/+log/0e4a448ab8aa66a38593f68d19fa0a2e340833e4..a4cb62f0ae6566068aef0742eb1cd46227d7dffd This includes a fix to the CFI issue which previously caused a revert. BUG=none Change-Id: Iab789ba802e4b6497b62ab6787c2ee08504515f5 Reviewed-on: https://chromium-review.googlesource.com/594649Reviewed-by:
Steven Valdez <svaldez@chromium.org> Commit-Queue: David Benjamin <davidben@chromium.org> Cr-Commit-Position: refs/heads/master@{#491214}
-
Alex Zhang authored
TestFrameSinkManagerImpl is an empty implementation of mojom::FrameSinkManager. It takes the place of FrameSinkManagerClientBinding in WindowServer in unit tests. TestGpuHost is an empty implementation of GpuHost. It takes the places of DefaultGpuHost in WindowServer in unit tests. TestWindowServerDelegate now creates a WindowServer with the test implementations so that there is no mojo connections in ws unit tests. Bug: 698026 Change-Id: Ie8682e15a624bcfca2856f07508051cfb4f19308 Reviewed-on: https://chromium-review.googlesource.com/594849 Commit-Queue: Xingyu Zhang <staraz@chromium.org> Reviewed-by:
Fady Samuel <fsamuel@chromium.org> Reviewed-by:
Scott Violet <sky@chromium.org> Cr-Commit-Position: refs/heads/master@{#491213}
-
nednguyen authored
THis also fix the regex of finding .wpr files in json archives list Bug: 730036 Change-Id: Iea0d1cd53caa4a45d293940a345dfa9e66737e63 Reviewed-on: https://chromium-review.googlesource.com/596589 Commit-Queue: Ned Nguyen <nednguyen@google.com> Reviewed-by:
Helen Li <xunjieli@chromium.org> Cr-Commit-Position: refs/heads/master@{#491212}
-
Christopher Cameron authored
Add helper in gfx::ColorSpace to, given an output color space, compute - the space in which rasterization should be performed - the space in which blending should be performed. Remove a place in the ui::Compositor where we check the kHighDyanmicRange feature, and use the above helper functions instead. Add logic in display::Display to automatically update the bit depth for media queries based on whether or not the output color space is HDR. Allow forcing an scrgb-linear profile using the --force-color-profile argument. Add logic in display::ScreenWin to enable HDR mode. This currently queries the HDR feature, but will pull the logic out of the GPU process in the next patch. R=hubbe TBR=avi (for content/) Bug: 682416 Change-Id: Ieffca5a3e0fa01a98aea5558db251712989519e7 Reviewed-on: https://chromium-review.googlesource.com/596776Reviewed-by:
ccameron chromium <ccameron@chromium.org> Commit-Queue: ccameron chromium <ccameron@chromium.org> Cr-Commit-Position: refs/heads/master@{#491211}
-
Stuart Langley authored
Bug: 712963 Change-Id: I079d33a74817c384e69ff1009e15af72c4bb9c4f Reviewed-on: https://chromium-review.googlesource.com/596619Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Commit-Queue: Stuart Langley <slangley@chromium.org> Cr-Commit-Position: refs/heads/master@{#491210}
-
Devlin Cronin authored
With the new task scheduling system, there are no guarantees that different operations will not collide - each caller has to ensure that no conflicting tasks will be scheduled and executed synchronously. This means that for file tasks, we need to have a common task runner for any tasks that may touch the same files. Introduce a common SequencedTaskRunner for the extension system, and use it in the UserScriptLoader. Additionally, use it in ExtensionService, in lieu of the prior ExtensionService-owned task runner that's used for file tasks in installation. Finally, also make the GetFileTaskRunner() method in ExtensionService non-virtual, since it's not needed on any of the interfaces. Bug: 689520 Bug: 750122 Change-Id: I9d0b993689821e7aca9b2553283609cce796a162 Reviewed-on: https://chromium-review.googlesource.com/593854Reviewed-by:
Istiaque Ahmed <lazyboy@chromium.org> Commit-Queue: Devlin <rdevlin.cronin@chromium.org> Cr-Commit-Position: refs/heads/master@{#491209}
-
Scott Graham authored
This resolves e.g. base_unittests not being able to find operator new, string::string(), etc. in Debug (is_component_build=true) builds. This matches other platforms, but was missed in creating the Fuchsia test() template. Bug: 750392 Change-Id: I1a7ba2988e9d991f26d392eeab670f3a100de319 Reviewed-on: https://chromium-review.googlesource.com/596520Reviewed-by:
Dirk Pranke <dpranke@chromium.org> Commit-Queue: Scott Graham <scottmg@chromium.org> Cr-Commit-Position: refs/heads/master@{#491208}
-
Conley Owens authored
Currently, there are no browser-side geolocation permission checks. This change adds a GeolocationService, which performs this check in the browser. BUG=426384 Cq-Include-Trybots: master.tryserver.chromium.linux:linux_site_isolation Change-Id: I40925adc1e18ff8549a6d9dd94f998e013ebf3a1 Reviewed-on: https://chromium-review.googlesource.com/558604 Commit-Queue: Conley Owens <cco3@chromium.org> Reviewed-by:
Nasko Oskov <nasko@chromium.org> Reviewed-by:
Miguel Casas <mcasas@chromium.org> Reviewed-by:
Jochen Eisinger <jochen@chromium.org> Reviewed-by:
Bo Liu <boliu@chromium.org> Reviewed-by:
Dominick Ng <dominickn@chromium.org> Reviewed-by:
Reilly Grant <reillyg@chromium.org> Cr-Commit-Position: refs/heads/master@{#491207}
-
Elliot Glaysher authored
Bug: 750642 Change-Id: Ibb22a58e8554916190e3e667d65740cf89d7be58 Reviewed-on: https://chromium-review.googlesource.com/596832Reviewed-by:
Scott Violet <sky@chromium.org> Commit-Queue: Elliot Glaysher <erg@chromium.org> Cr-Commit-Position: refs/heads/master@{#491206}
-
Kevin Marshall authored
Fuchsia: enable MemoryMappedFile tests Fuchsia now supports mmap() for tmpfs, so these tests Just Work. Bug: 746051, 706592 Change-Id: I208c88852bcd22cec0b03f8c2578c71fd305c663 Reviewed-on: https://chromium-review.googlesource.com/596611Reviewed-by:
Scott Graham <scottmg@chromium.org> Commit-Queue: Kevin Marshall <kmarshall@chromium.org> Cr-Commit-Position: refs/heads/master@{#491205}
-
Ali Tofigh authored
Bug: 746987 Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation Change-Id: I3397b1234aec605b93da8b8ffcddd03f121a9980 Reviewed-on: https://chromium-review.googlesource.com/588130 Commit-Queue: Ali Tofigh <alito@chromium.org> Reviewed-by:
Jesse Doherty <jwd@chromium.org> Reviewed-by:
Dave Schuyler <dschuyler@chromium.org> Reviewed-by:
proberge <proberge@chromium.org> Cr-Commit-Position: refs/heads/master@{#491204}
-
Weidong Guo authored
Changes: 1. Clicking/touching the x button should clear the text and keep the searchbox active. 2. Backspace clearing the last character should act the same as X button. 3. Add unit tests for this behavior change. BUG=749361 TEST= SearchBoxViewFullscreenTest.CloseButtonInvisibleByDefault SearchBoxViewFullscreenTest.CloseButtonVisibleAfterTyping SearchBoxViewFullscreenTest.SearchBoxEmptyAfterCloseButtonClicked SearchBoxViewFullscreenTest.SearchBoxActiveAfterCloseButtonClicked Change-Id: I6ad303bd222996c1aad343c17c08fb17f5667318 Reviewed-on: https://chromium-review.googlesource.com/595256 Commit-Queue: Weidong Guo <weidongg@chromium.org> Reviewed-by:
Steven Bennetts <stevenjb@chromium.org> Reviewed-by:
James Cook <jamescook@chromium.org> Cr-Commit-Position: refs/heads/master@{#491203}
-
Adrienne Walker authored
In order to more easily refactor RasterSource's preamble generation (see https://chromium-review.googlesource.com/c/592237/) this moves out code that isn't supported by PaintCanvas up to where there's an SkCanvas. The SkCanvas::discard logic only applies to gpu raster and so is only replicated in the gpu raster buffer provider and not elsewhere. Bug: 671433 Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel Change-Id: I0e006b78bb619b56e5db0a1d30c74e8de63547e1 Reviewed-on: https://chromium-review.googlesource.com/594661 Commit-Queue: enne <enne@chromium.org> Reviewed-by:
Vladimir Levin <vmpstr@chromium.org> Cr-Commit-Position: refs/heads/master@{#491202}
-
Daniel Erat authored
Fix a bug where the note-taking app list spins forever due to intent filter changes not being observed for newly-added profiles. Bug: 748763 Change-Id: I094f989ef986d8a8eaf2f2492d46a3c18ea73159 Reviewed-on: https://chromium-review.googlesource.com/594893Reviewed-by:
Hidehiko Abe <hidehiko@chromium.org> Commit-Queue: Dan Erat <derat@chromium.org> Cr-Commit-Position: refs/heads/master@{#491201}
-
Scott Graham authored
Bug: 738275, 735701, 750370, 750756 Change-Id: Ibaa143616ce60ae6d94854f9cadc8daf2d84a37c Reviewed-on: https://chromium-review.googlesource.com/596914Reviewed-by:
Wez <wez@chromium.org> Commit-Queue: Scott Graham <scottmg@chromium.org> Cr-Commit-Position: refs/heads/master@{#491200}
-
Evan Stade authored
With c3b2602a these heuristics are deemed no longer useful/ necessary. They were only enabled behind a flag, so there should be no effective user-visible change. Bug: 734104 Change-Id: I4c22e7a638dad8d2ed36494663276ef47dbbb495 Reviewed-on: https://chromium-review.googlesource.com/596830Reviewed-by:
Scott Violet <sky@chromium.org> Commit-Queue: Evan Stade <estade@chromium.org> Cr-Commit-Position: refs/heads/master@{#491199}
-
Jun Cai authored
This CL adds a "mojom::SensorType type" parameter to the PlatformSensor::Client::OnSensorReadingChanged() function to signal which sensor has changed its data. By doing this, fusion sensor algorithms may update different parts of their internal state depending on which sensor has changed. Bug: 750882 Change-Id: I26fad3e80c4a63337fd89d58ba6a62a6c1d5880a Reviewed-on: https://chromium-review.googlesource.com/594720 Commit-Queue: Jun Cai <juncai@chromium.org> Reviewed-by:
Reilly Grant <reillyg@chromium.org> Cr-Commit-Position: refs/heads/master@{#491198}
-
Yuly Novikov authored
deqp/functional/gles3/shaderindexing/mat_00.html on Mac AMD BUG=751254 TBR=kbr@chromium.org Cq-Include-Trybots: master.tryserver.chromium.android:android_optional_gpu_tests_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 Change-Id: I61f545a7f9af55b381affd55959a017c0f92c575 Reviewed-on: https://chromium-review.googlesource.com/596928 Commit-Queue: Yuly Novikov <ynovikov@chromium.org> Reviewed-by:
Yuly Novikov <ynovikov@chromium.org> Cr-Commit-Position: refs/heads/master@{#491197}
-
Wenzhao Zang authored
Login/lock screen related constants may be used from at least three places: views-based lock, WebUi based login/lock and wallpaper. So we want to move them together just as shelf_constants.h Bug: 732566, 733409 Change-Id: I791d5dfbd02f35cdcc6064b964b97b6978a376d2 Reviewed-on: https://chromium-review.googlesource.com/590483Reviewed-by:
Dan Erat <derat@chromium.org> Reviewed-by:
Jacob Dufault <jdufault@chromium.org> Commit-Queue: Wenzhao (Colin) Zang <wzang@chromium.org> Cr-Commit-Position: refs/heads/master@{#491196}
-
Oleh Prypin authored
This is used for projects that rely on Chromium's build infrastructure after Chromium switched to C++14 https://chromium-review.googlesource.com/c/583635 Bug: 750683 Change-Id: Id673a2474a1b5c606ce17b1ce8e7faa4de0cb5b9 Reviewed-on: https://chromium-review.googlesource.com/596870Reviewed-by:
Dirk Pranke <dpranke@chromium.org> Commit-Queue: Oleh Prypin <oprypin@chromium.org> Cr-Commit-Position: refs/heads/master@{#491195}
-
Devlin Cronin authored
Migrate the system info API to use the new task scheduler API instead of using the worker pool. Note: also change the shutdown behavior to be SKIP_ON_SHUTDOWN, since there's no reason for it to be CONTINUE_ON_SHUTDOWN. Bug: 689520 Change-Id: I4c4fb9990123f6124948b12fc6cf580ec45c8da7 Reviewed-on: https://chromium-review.googlesource.com/591987Reviewed-by:
Istiaque Ahmed <lazyboy@chromium.org> Commit-Queue: Devlin <rdevlin.cronin@chromium.org> Cr-Commit-Position: refs/heads/master@{#491194}
-
Christopher Lam authored
This CL makes bookmark folders that are beneath the 2nd level of the hierarchy get hidden by default. They will then retain the open state after being explicitly opened or closed by the user. Bug: 727177 Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation Change-Id: Id53584e3c777a057e6a4f9536e0f1df01a242cd6 Reviewed-on: https://chromium-review.googlesource.com/583984 Commit-Queue: calamity <calamity@chromium.org> Reviewed-by:
Tim Sergeant <tsergeant@chromium.org> Cr-Commit-Position: refs/heads/master@{#491193}
-
Dave Schuyler authored
This CL changes the <paper-icon-button> elements to <button> with is="paper-icon-button-light". Bug: 746584 Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation Change-Id: I045badb04115139ac3f624f9b6a57d161dafc55c Reviewed-on: https://chromium-review.googlesource.com/588012Reviewed-by:
Tommy Li <tommycli@chromium.org> Reviewed-by:
Scott Chen <scottchen@chromium.org> Commit-Queue: Dave Schuyler <dschuyler@chromium.org> Cr-Commit-Position: refs/heads/master@{#491192}
-
Charles Harrison authored
This aligns the look more with the future Harmony UI. Additionally, this CL addds a .icon version of the "help-outline" svg image in chrome/browser/resources/settings/icons.html Bug: 736318 Change-Id: I41090a0ee5ed7e23490855213baf6b9d89b78629 Reviewed-on: https://chromium-review.googlesource.com/544199 Commit-Queue: Charlie Harrison <csharrison@chromium.org> Reviewed-by:
Robert Sesek <rsesek@chromium.org> Reviewed-by:
Peter Kasting <pkasting@chromium.org> Reviewed-by:
Evan Stade <estade@chromium.org> Reviewed-by:
Bret Sepulveda <bsep@chromium.org> Cr-Commit-Position: refs/heads/master@{#491191}
-
Helen Li authored
system health mobile has been converted to wprgo. This CL removes the unused .wpr.sha1 files. Bug: 730036 Change-Id: Ib564dbfee91fa6c672882fff5ced8c54854d30ce Reviewed-on: https://chromium-review.googlesource.com/596708Reviewed-by:
Ned Nguyen <nednguyen@google.com> Commit-Queue: Helen Li <xunjieli@chromium.org> Cr-Commit-Position: refs/heads/master@{#491190}
-
Nicholas Verne authored
In order to move WebFrameTest we allow gfx::ScrollOffset to be used from core/. Bug: 712963 Change-Id: I8234af1f7fed70947c278f759b710053034368d9 Reviewed-on: https://chromium-review.googlesource.com/595021 Commit-Queue: Nicholas Verne <nverne@chromium.org> Reviewed-by:
Kent Tamura <tkent@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Cr-Commit-Position: refs/heads/master@{#491189}
-
Shivani Sharma authored
Bug: 750725 Change-Id: I9a70b4fd03aec9a74bd76f3988442cd6e9f908d3 Reviewed-on: https://chromium-review.googlesource.com/596151 Commit-Queue: Shivani Sharma <shivanisha@chromium.org> Reviewed-by:
Josh Karlin <jkarlin@chromium.org> Cr-Commit-Position: refs/heads/master@{#491188}
-
Ulan Degenbaev authored
This is followup of 491087. BUG=chromium:730036 TBR=nednguyen@google.com NOTREECHECK=true Change-Id: I8cf4f1050073160b1c0e428e1f350f8bb9d0f0d5 Reviewed-on: https://chromium-review.googlesource.com/596871 Commit-Queue: Ned Nguyen <nednguyen@google.com> Reviewed-by:
Ulan Degenbaev <ulan@chromium.org> Reviewed-by:
Helen Li <xunjieli@chromium.org> Cr-Commit-Position: refs/heads/master@{#491187}
-
Helen Li authored
System health desktop has been migrated to wprgo. This CL is to remove the unused *.wpr.sha1 files. Bug: 730036 Change-Id: I8d8bb20f732c6c3fe18482847dcf5df1e2222720 Reviewed-on: https://chromium-review.googlesource.com/596707Reviewed-by:
Ned Nguyen <nednguyen@google.com> Commit-Queue: Helen Li <xunjieli@chromium.org> Cr-Commit-Position: refs/heads/master@{#491186}
-
chrome://settingsTim Song authored
Screenshot: https://screenshot.googleplex.com/BV3uweR38fL.png See mocks at: https://docs.google.com/presentation/d/1GnKn5ca_KrM_BTQB-He9cCmzAQtwVF6JJJ6Lo6i4gqI/edit#slide=id.g4af27b4ff_35243 BUG=748288 Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation Change-Id: I6f8f0b92164d546c1670816a76d3289d648955f1 Reviewed-on: https://chromium-review.googlesource.com/582342Reviewed-by:
Steven Bennetts <stevenjb@chromium.org> Reviewed-by:
Gustavo Sacomoto <sacomoto@chromium.org> Commit-Queue: Tim Song <tengs@chromium.org> Cr-Commit-Position: refs/heads/master@{#491185}
-
dpapad authored
Also removing jscomp_off=misplacedTypeAnnotation flag. It was originally introduced to work around a Closure compiler issue with cr.defineProperty(), but as of latest compiler version the issue has been fixed. Because of the flag's presence several other (unrelated to cr.defineProperty) invalid/misplaced type annotations appeared in the code. Bug: 421562 Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation Change-Id: Id281ade4208149f6ea3bbcae8a99d28e0f282c9c Reviewed-on: https://chromium-review.googlesource.com/596834Reviewed-by:
Demetrios Papadopoulos <dpapad@chromium.org> Reviewed-by:
Naoki Fukino <fukino@chromium.org> Commit-Queue: Demetrios Papadopoulos <dpapad@chromium.org> Cr-Commit-Position: refs/heads/master@{#491184}
-
zpeng authored
Our experiments show that Desugar, a Google-developed open-source tool, outperforms Retrolambda in both APK sizes and Java method counts. This CL replaces Retrolambda with Desugar in our experimental Java 8 support. BUG=730711 Review-Url: https://codereview.chromium.org/2985523002 Cr-Commit-Position: refs/heads/master@{#491183}
-