diff --git a/browser/resources/bookmarks/brave_overrides/index.ts b/browser/resources/bookmarks/brave_overrides/index.ts index a3a066a832fe..3ba9c3410cd8 100644 --- a/browser/resources/bookmarks/brave_overrides/index.ts +++ b/browser/resources/bookmarks/brave_overrides/index.ts @@ -3,4 +3,6 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this file, // you can obtain one at https://mozilla.org/MPL/2.0/. +import 'chrome://resources/brave/br_elements/br_toolbar/br_toolbar.js' + import './folder_node.js' diff --git a/browser/resources/extensions/brave_overrides/index.ts b/browser/resources/extensions/brave_overrides/index.ts index fe8d20b66548..de87833bf27d 100644 --- a/browser/resources/extensions/brave_overrides/index.ts +++ b/browser/resources/extensions/brave_overrides/index.ts @@ -3,6 +3,8 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this file, // you can obtain one at https://mozilla.org/MPL/2.0/. +import 'chrome://resources/brave/br_elements/br_toolbar/br_toolbar.js' + import './extensions_detail_view.js' import './extensions_toolbar.js' import './side_bar.js' diff --git a/browser/resources/history/brave_overrides/index.ts b/browser/resources/history/brave_overrides/index.ts index 6275fa7ef3f7..44b79135e29b 100644 --- a/browser/resources/history/brave_overrides/index.ts +++ b/browser/resources/history/brave_overrides/index.ts @@ -3,6 +3,8 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this file, // you can obtain one at https://mozilla.org/MPL/2.0/. +import 'chrome://resources/brave/br_elements/br_toolbar/br_toolbar.js' + import './app.js' import './history_item.js' import './side_bar.js' diff --git a/browser/resources/password_manager/brave_overrides/index.ts b/browser/resources/password_manager/brave_overrides/index.ts index 3dc5d75ff6d7..e5fb92c9e2fc 100644 --- a/browser/resources/password_manager/brave_overrides/index.ts +++ b/browser/resources/password_manager/brave_overrides/index.ts @@ -3,4 +3,6 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this file, // You can obtain one at https://mozilla.org/MPL/2.0/. +import 'chrome://resources/brave/br_elements/br_toolbar/br_toolbar.js' + import './side_bar.js' diff --git a/browser/resources/settings/brave_overrides/index.ts b/browser/resources/settings/brave_overrides/index.ts index 624d00542d64..c026d3f4e101 100644 --- a/browser/resources/settings/brave_overrides/index.ts +++ b/browser/resources/settings/brave_overrides/index.ts @@ -9,6 +9,8 @@ // where it is not consistant due to "network" responses) and // optimized (rollup controls the order in which modules are executed). +import 'chrome://resources/brave/br_elements/br_toolbar/br_toolbar.js' + import './config.js' import { ContentSettingsTypes } from '../site_settings/constants.js' import './about_page.js' diff --git a/ui/webui/resources/polymer_overriding.ts b/ui/webui/resources/polymer_overriding.ts index 10637f678aea..0be522c2240a 100644 --- a/ui/webui/resources/polymer_overriding.ts +++ b/ui/webui/resources/polymer_overriding.ts @@ -6,7 +6,6 @@ // @ts-nocheck TODO(petemill): Define types // Global overrides -import './br_elements/br_toolbar/br_toolbar.js' import './br_elements/br_shared_style.css.js' import { html as polymerHtml, mixinBehaviors, Polymer, PolymerElement } from 'chrome://resources/polymer/v3_0/polymer/polymer_bundled.min.js';