2 Commits
Author SHA1 Message Date
Aleksei Khoroshilov a41bf5350b Replace "src/" includes with <> in chromium_src. (#30096)
This change updates how brave/chromium_src overrides can reference original files: it adds ability to use #include <...> along with #include "src/...". This is enabled by replacing -I../../brave/chromium_src with -iquote../../brave_chromium_src, which adds an include search path only for #include "..." directives.

With this approach, other files in the build tree can reference brave/chromium_src overrides using #include "...", while the overrides themselves can reference original Chromium files using #include <...>. Since Chromium uses #include "..." for all in-tree files, we can leverage this convention and configure our overrides so that we can drop support for #include "src/" later by removing -I../../.. and making rbe_exec_root modification obsolete (the main goal).
2025-07-24 17:37:44 +07:00
Emerick Rogul 7a4f840029 Hide caption options in media control popup
Chromium change:
https://source.chromium.org/chromium/chromium/src/+/3c8897407bd4a7a22c606aa47b30b92fd7581ee8

commit 3c8897407bd4a7a22c606aa47b30b92fd7581ee8
Author: Evan Liu <evliu@google.com>
Date:   Mon Aug 26 21:55:15 2024 +0000

    Remove Live Caption feature flag

    This CL removes the Live Caption feature flag. Live Caption has been
    enabled by default on all platforms.

    Fix: 360909759
2024-10-09 17:59:49 -04:00