tree: 5dd57ade47ae1a813fd83c20e7a325f18129772d [path history] [tgz]
  1. associated_interfaces/
  2. blob/
  3. client_hints/
  4. clipboard/
  5. color_chooser/
  6. device_memory/
  7. feature_policy/
  8. message_port/
  9. mime_util/
  10. net/
  11. origin_manifest/
  12. origin_trials/
  13. page/
  14. quota/
  15. service_worker/
  16. test/
  17. BUILD.gn
  18. common_export.h
  19. DEPS
  20. frame_policy.cc
  21. frame_policy.h
  22. OWNERS
  23. README.md
  24. sandbox_flags.h
  25. typemaps.gni
third_party/WebKit/common/README.md

Blink ‘common’ directory

This directory contains the common Web Platform stuff that needs to be shared by renderer-side and browser-side code.

Things that live in third_party/WebKit/Source, or other renderer-side code and browser-side code (e.g. //content and //chrome) can depend on this directory, while anything in this directory should NOT depend on them. (See DEPS and BUILD.gn files for more details)

Code in this directory would normally use blink namespace.

Unlike other directories in WebKit, code in this directory should:

  • Use Chromium‘s common types (e.g. //base ones) rather than Blink’s ones (e.g. WTF types)

  • Use underscore_separated_file_names.cc style rather than CamelCase.cpp.

  • Follow Chromium's common coding style guide

  • Use full-path from src/ for includes (e.g. third_party/WebKit/common/foo.h rather than common/foo.h). Likewise, code outside this directory that includes files in this directory should use the full-path.