• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..12-Nov-2020-

associated_interfaces/H12-Nov-2020-146108

blob/H12-Nov-2020-6837

bluetooth/H12-Nov-2020-210144

cache_storage/H12-Nov-2020-3317

client_hints/H12-Nov-2020-316241

device_memory/H12-Nov-2020-12584

dom_storage/H12-Nov-2020-2312

dwrite_rasterizer_support/H12-Nov-2020-3119

experiments/H12-Nov-2020-141103

feature_policy/H12-Nov-2020-3,7152,519

fetch/H12-Nov-2020-5744

font_unique_name_lookup/H12-Nov-2020-345256

frame/H12-Nov-2020-416278

indexeddb/H12-Nov-2020-738572

input/H12-Nov-2020-430333

loader/H12-Nov-2020-4,9703,724

logging/H12-Nov-2020-3323

manifest/H12-Nov-2020-1,153843

mediastream/H12-Nov-2020-437333

messaging/H12-Nov-2020-1,6071,163

mime_util/H12-Nov-2020-308236

notifications/H12-Nov-2020-456325

origin_trials/H12-Nov-2020-1,7241,341

page/H12-Nov-2020-4217

peerconnection/H12-Nov-2020-189

permissions/H12-Nov-2020-2716

privacy_budget/H12-Nov-2020-241152

scheduler/H12-Nov-2020-9990

service_worker/H12-Nov-2020-136102

user_agent/H12-Nov-2020-9061

web_package/H12-Nov-2020-1,033732

BUILD.gnH A D07-Nov-20208.4 KiB249227

DEPSH A D07-Nov-20201.1 KiB3432

OWNERSH A D07-Nov-2020201 1210

README.mdH A D07-Nov-2020895 2214

browser_interface_broker_proxy.ccH A D07-Nov-20202.1 KiB6952

features.ccH A D07-Nov-202022 KiB502259

thread_safe_browser_interface_broker_proxy.ccH A D07-Nov-20201.3 KiB4732

typemaps.gniH A D07-Nov-2020588 1311

README.md

1# Blink 'common' directory
2
3This directory contains the common Web Platform stuff that needs to be shared
4by renderer-side and browser-side code.
5
6Things that live in `third_party/blink` can directly depend on this directory,
7while the code outside the Blink directory (e.g. `//content` and `//chrome`)
8can only depend on the common stuff via the public headers exposed in
9`blink/public/common`.
10
11Anything in this directory should **NOT** depend on the non-common stuff
12in the Blink directory. See `DEPS` and `BUILD.gn` files for more details.
13
14Code in this directory would normally use `blink` namespace.
15
16Unlike other directories in Blink, code in this directory should:
17
18* Use Chromium's common types (e.g. //base ones) rather than Blink's ones
19  (e.g. WTF types)
20
21* Follow [Chromium's common coding style guide](https://chromium.googlesource.com/chromium/src/+/master/styleguide/c++/c++.md)
22