0
Files
src/chromeos
Marc Treib 082c18e504 Revert "Enable the flag of scrollable shelf by default"
This reverts commit d76a27dd13.

Reason for revert: Seems to have broken ~all the browser_tests and interactive_ui_tests on ChromeOS, see crbug.com/1006165

Original change's description:
> Enable the flag of scrollable shelf by default
> 
> This CL enables scrollable shelf as default. It will be landed after
> discussion with other team members.
> 
> Bug: 1002576
> Change-Id: I4dab5b81bf6418d5cc066f2763b4b5862ebff716
> Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1790755
> Commit-Queue: Andrew Xu <andrewxu@chromium.org>
> Reviewed-by: Manu Cornet <manucornet@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#698284}

TBR=manucornet@chromium.org,andrewxu@chromium.org

Change-Id: Ie19273c5fd4187c67dc0646278e04eb04fce3eb8
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Bug: 1002576, 1006165
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1816540
Reviewed-by: Marc Treib <treib@chromium.org>
Commit-Queue: Marc Treib <treib@chromium.org>
Cr-Commit-Position: refs/heads/master@{#698425}
2019-09-20 09:59:30 +00:00
..
2019-09-05 07:40:16 +00:00
2019-09-10 16:26:29 +00:00

Chrome OS

This directory contains low-level support for Chrome running on Chrome OS. Many subdirectories contain Chrome-style C++ wrappers around operating system components.

For example, //chromeos/dbus contains wrappers around the D-Bus interfaces to system daemons like the network configuration manager (shill). Most other directories contain low-level utility code. For example, //chromeos/disks has utilities for mounting and unmounting disk volumes.

There are two exceptions:

  • //chromeos/services contains mojo services that were not considered sufficiently general to live in top-level //services. For example //chromeos/services/secure_channel bootstraps a secure communications channel to an Android phone over Bluetooth, enabling multi-device features like instant tethering.

  • //chromeos/components contains C++ components that were not considered sufficiently general to live in top-level //components. For example, //chromeos/components/account_manager manages the user's GAIA accounts, but is used as the backend for UI that only exists on Chrome OS devices.

Note, //chromeos does not contain any user-facing UI code, and hence it has "-ui" in its DEPS. The contents of //chromeos should also not depend on //chrome or //content.