Skip to content

Commit

Permalink
Merge pull request #2431 from brave/uplift-nav-bar-strings-0.65.x
Browse files Browse the repository at this point in the history
Merge pull request #2384 from brave/fix-ui-generated-resources-dep
  • Loading branch information
bsclifton committed May 15, 2019
2 parents 7fc2fc7 + 782123e commit 9b4d029
Show file tree
Hide file tree
Showing 19 changed files with 165 additions and 38 deletions.
6 changes: 6 additions & 0 deletions browser/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,12 @@ source_set("browser_process") {
"//third_party/widevine/cdm:buildflags",
]

if (!is_android) {
deps += [
"//brave/app:brave_generated_resources_grit",
]
}

if (bundle_widevine_cdm || enable_widevine_cdm_component) { deps += [ "//brave/browser/widevine" ] }

if (is_win && is_official_build) {
Expand Down
1 change: 1 addition & 0 deletions browser/extensions/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ source_set("extensions") {

deps = [
"//base",
"//brave/app:brave_generated_resources_grit",
"//brave/common:pref_names",
"//brave/common/extensions/api",
"//brave/components/brave_extension:static_resources",
Expand Down
6 changes: 6 additions & 0 deletions browser/net/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,10 @@ source_set("net") {
"//extensions/common:common_constants",
"//net",
]

if (!is_android) {
deps += [
"//brave/app:brave_generated_resources_grit",
]
}
}
1 change: 1 addition & 0 deletions browser/themes/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ source_set("themes") {

deps = [
"//base",
"//brave/app:brave_generated_resources_grit",
"//brave/common",
"//chrome/common",
"//components/prefs",
Expand Down
8 changes: 8 additions & 0 deletions browser/ui/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ source_set("ui") {
"webui/brave_donate_ui.h",
"webui/brave_md_settings_ui.cc",
"webui/brave_md_settings_ui.h",
"webui/navigation_bar_data_provider.cc",
"webui/navigation_bar_data_provider.h",
"webui/brave_new_tab_ui.cc",
"webui/brave_new_tab_ui.h",
"webui/brave_web_ui_controller_factory.cc",
Expand Down Expand Up @@ -144,6 +146,12 @@ source_set("ui") {
"//ui/gfx",
]

if (!is_android) {
deps += [
"//brave/app:brave_generated_resources_grit",
]
}

if (is_win && is_official_build) {
sources += [
"//chrome/browser/ui/webui/help/version_updater_win.cc",
Expand Down
2 changes: 2 additions & 0 deletions browser/ui/webui/brave_md_settings_ui.cc
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
#include "brave/browser/ui/webui/settings/brave_default_extensions_handler.h"
#include "brave/browser/ui/webui/settings/brave_privacy_handler.h"
#include "brave/browser/ui/webui/settings/default_brave_shields_handler.h"
#include "brave/browser/ui/webui/navigation_bar_data_provider.h"
#include "brave/browser/version_info.h"
#include "brave/common/brave_switches.h"
#include "chrome/browser/profiles/profile.h"
Expand Down Expand Up @@ -56,4 +57,5 @@ void BraveMdSettingsUI::AddResources(content::WebUIDataSource* html_source,
command_line.HasSwitch(switches::kDisableBraveSync));
html_source->AddString("braveProductVersion",
version_info::GetBraveVersionWithoutChromiumMajorVersion());
NavigationBarDataProvider::Initialize(html_source);
}
6 changes: 6 additions & 0 deletions browser/ui/webui/brave_webui_source.cc
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
#include "content/public/browser/web_ui_data_source.h"

#if !defined(OS_ANDROID)
#include "brave/browser/ui/webui/navigation_bar_data_provider.h"
#include "brave/components/brave_rewards/resources/grit/brave_rewards_resources.h"
#include "components/grit/brave_components_resources.h"
#else
Expand Down Expand Up @@ -45,6 +46,11 @@ void AddResourcePaths(content::WebUIDataSource* html_source,

void CustomizeWebUIHTMLSource(const std::string &name,
content::WebUIDataSource* source) {
#if !defined(OS_ANDROID)
if (name == "rewards") {
NavigationBarDataProvider::Initialize(source);
}
#endif
static std::map<std::string, std::vector<WebUISimpleItem> > resources = {
{
std::string("newtab"), {
Expand Down
23 changes: 23 additions & 0 deletions browser/ui/webui/navigation_bar_data_provider.cc
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// Copyright (c) 2019 The Brave Authors
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
// you can obtain one at http://mozilla.org/MPL/2.0/.

#include "brave/browser/ui/webui/navigation_bar_data_provider.h"

#include "chrome/grit/generated_resources.h"
#include "components/strings/grit/components_strings.h"
#include "content/public/browser/web_ui_data_source.h"

// static
void NavigationBarDataProvider::Initialize(content::WebUIDataSource* source) {
source->AddLocalizedString(
"brToolbarSettingsTitle", IDS_SETTINGS_SETTINGS);
source->AddLocalizedString(
"brToolbarBookmarksTitle", IDS_BOOKMARK_MANAGER_TITLE);
source->AddLocalizedString(
"brToolbarDownloadsTitle", IDS_DOWNLOAD_TITLE);
source->AddLocalizedString(
"brToolbarHistoryTitle", IDS_HISTORY_TITLE);
}

20 changes: 20 additions & 0 deletions browser/ui/webui/navigation_bar_data_provider.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// Copyright (c) 2019 The Brave Authors
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
// you can obtain one at http://mozilla.org/MPL/2.0/.

#ifndef BRAVE_BROWSER_UI_WEBUI_NAVIGATION_BAR_DATA_PROVIDER_H
#define BRAVE_BROWSER_UI_WEBUI_NAVIGATION_BAR_DATA_PROVIDER_H

namespace content {
class WebUIDataSource;
}

class NavigationBarDataProvider {
public:
// Sets load-time constants on |source|. This handles a flicker-free initial
// page load (i.e. loadTimeData.getString('brToolbarSettingsTitle')).
static void Initialize(content::WebUIDataSource* source);
};

#endif
1 change: 1 addition & 0 deletions browser/widevine/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ assert(bundle_widevine_cdm || enable_widevine_cdm_component)
source_set("widevine") {
deps = [
"//base",
"//brave/app:brave_generated_resources_grit",
"//components/content_settings/core/common",
"//content/public/browser",
"//content/public/common",
Expand Down
17 changes: 17 additions & 0 deletions chromium_src/chrome/browser/ui/webui/bookmarks/bookmarks_ui.cc
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// Copyright (c) 2019 The Brave Authors
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
// you can obtain one at http://mozilla.org/MPL/2.0/.

#include "brave/browser/ui/webui/navigation_bar_data_provider.h"

namespace {

void BraveCustomizeBookmarksDataSource(content::WebUIDataSource* source) {
NavigationBarDataProvider::Initialize(source);
}

} // namespace

#include "../../../../../../chrome/browser/ui/webui/bookmarks/bookmarks_ui.cc"

17 changes: 17 additions & 0 deletions chromium_src/chrome/browser/ui/webui/downloads/downloads_ui.cc
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// Copyright (c) 2019 The Brave Authors
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
// you can obtain one at http://mozilla.org/MPL/2.0/.

#include "brave/browser/ui/webui/navigation_bar_data_provider.h"

namespace {

void BraveCustomizeDownloadsDataSource(content::WebUIDataSource* source) {
NavigationBarDataProvider::Initialize(source);
}

} // namespace

#include "../../../../../../chrome/browser/ui/webui/downloads/downloads_ui.cc" // NOLINT

Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

#include "brave/browser/resources/md_extensions/grit/brave_extensions_resources.h"
#include "brave/browser/resources/md_extensions/grit/brave_extensions_resources_map.h"
#include "brave/browser/ui/webui/navigation_bar_data_provider.h"
#include "brave/grit/brave_generated_resources.h"
#include "chrome/common/buildflags.h"
#include "chrome/grit/generated_resources.h"
Expand All @@ -23,6 +24,7 @@ void BraveAddExtensionsResources(content::WebUIDataSource* source) {
kBraveExtensionsResources[i].value);
}
#endif
NavigationBarDataProvider::Initialize(source);
}

} // namespace
Expand Down
17 changes: 17 additions & 0 deletions chromium_src/chrome/browser/ui/webui/history_ui.cc
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// Copyright (c) 2019 The Brave Authors
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
// you can obtain one at http://mozilla.org/MPL/2.0/.

#include "brave/browser/ui/webui/navigation_bar_data_provider.h"

namespace {

void BraveCustomizeHistoryDataSource(content::WebUIDataSource* source) {
NavigationBarDataProvider::Initialize(source);
}

} // namespace

#include "../../../../../chrome/browser/ui/webui/history_ui.cc"

39 changes: 2 additions & 37 deletions chromium_src/ui/base/webui/web_ui_util.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3,46 +3,11 @@
#include "brave/ui/webui/resources/grit/brave_webui_resources.h"
#include "ui/resources/grit/webui_resources.h"

#define SetLoadTimeDataDefaults SetLoadTimeDataDefaults_ChromiumImpl
// Replace text_defaults.css with brave's text_defaults.css
// which is defined in brave_webui_resources.grd.
#define IDR_WEBUI_CSS_TEXT_DEFAULTS_MD_PREVIOUS IDR_WEBUI_CSS_TEXT_DEFAULTS_MD
#undef IDR_WEBUI_CSS_TEXT_DEFAULTS_MD
#define IDR_WEBUI_CSS_TEXT_DEFAULTS_MD IDR_BRAVE_WEBUI_CSS_TEXT_DEFAULTS
#include "../../../../../ui/base/webui/web_ui_util.cc"
#undef SetLoadTimeDataDefaults
#undef IDR_WEBUI_CSS_TEXT_DEFAULTS_MD
#define IDR_WEBUI_CSS_TEXT_DEFAULTS_MD IDR_WEBUI_CSS_TEXT_DEFAULTS_MD_PREVIOUS

#include "chrome/grit/generated_resources.h"
#include "components/strings/grit/components_strings.h"
#include "ui/base/l10n/l10n_util.h"

namespace webui {

void SetLoadTimeDataDefaults(const std::string& app_locale,
base::DictionaryValue* localized_strings) {

SetLoadTimeDataDefaults_ChromiumImpl(app_locale, localized_strings);
localized_strings->SetString(
"brToolbarSettingsTitle",
l10n_util::GetStringUTF16(IDS_SETTINGS_SETTINGS)
);
localized_strings->SetString(
"brToolbarBookmarksTitle",
l10n_util::GetStringUTF16(IDS_BOOKMARK_MANAGER_TITLE)
);
localized_strings->SetString(
"brToolbarDownloadsTitle",
l10n_util::GetStringUTF16(IDS_DOWNLOAD_TITLE)
);
localized_strings->SetString(
"brToolbarHistoryTitle",
l10n_util::GetStringUTF16(IDS_HISTORY_TITLE)
);
}

void SetLoadTimeDataDefaults(const std::string& app_locale,
ui::TemplateReplacements* replacements) {
SetLoadTimeDataDefaults_ChromiumImpl(app_locale, replacements);
}

}
12 changes: 12 additions & 0 deletions patches/chrome-browser-ui-webui-bookmarks-bookmarks_ui.cc.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
diff --git a/chrome/browser/ui/webui/bookmarks/bookmarks_ui.cc b/chrome/browser/ui/webui/bookmarks/bookmarks_ui.cc
index 0542e022aeaedc240cf0bc79b9acebfe121fcc4d..ac9fe90cb2d96fa9850c066ae33630a60bf4ba22 100644
--- a/chrome/browser/ui/webui/bookmarks/bookmarks_ui.cc
+++ b/chrome/browser/ui/webui/bookmarks/bookmarks_ui.cc
@@ -45,6 +45,7 @@ content::WebUIDataSource* CreateBookmarksUIHTMLSource(Profile* profile) {
content::WebUIDataSource* source =
content::WebUIDataSource::Create(chrome::kChromeUIBookmarksHost);

+ BraveCustomizeBookmarksDataSource(source);
// Build an Accelerator to describe undo shortcut
// NOTE: the undo shortcut is also defined in bookmarks/command_manager.js
// TODO(b/893033): de-duplicate shortcut by moving all shortcut definitions
12 changes: 12 additions & 0 deletions patches/chrome-browser-ui-webui-downloads-downloads_ui.cc.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
diff --git a/chrome/browser/ui/webui/downloads/downloads_ui.cc b/chrome/browser/ui/webui/downloads/downloads_ui.cc
index 9f595a7bbb7adc1e42fd7eac31d0b8819deda532..41bfbeddcc010e8c76cf198c64d428d274b44137 100644
--- a/chrome/browser/ui/webui/downloads/downloads_ui.cc
+++ b/chrome/browser/ui/webui/downloads/downloads_ui.cc
@@ -47,6 +47,7 @@ content::WebUIDataSource* CreateDownloadsUIHTMLSource(Profile* profile) {
content::WebUIDataSource* source =
content::WebUIDataSource::Create(chrome::kChromeUIDownloadsHost);

+ BraveCustomizeDownloadsDataSource(source);
source->AddLocalizedString("title", IDS_DOWNLOAD_TITLE);
source->AddLocalizedString("searchResultsPlural", IDS_SEARCH_RESULTS_PLURAL);
source->AddLocalizedString("searchResultsSingular",
12 changes: 12 additions & 0 deletions patches/chrome-browser-ui-webui-history_ui.cc.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
diff --git a/chrome/browser/ui/webui/history_ui.cc b/chrome/browser/ui/webui/history_ui.cc
index b6b6f4f7aa79a1c3a44a187c1f618e10194442bd..09a0d991a87ff90c84678ac0f6325a8e5076560a 100644
--- a/chrome/browser/ui/webui/history_ui.cc
+++ b/chrome/browser/ui/webui/history_ui.cc
@@ -56,6 +56,7 @@ content::WebUIDataSource* CreateHistoryUIHTMLSource(Profile* profile) {
content::WebUIDataSource* source =
content::WebUIDataSource::Create(chrome::kChromeUIHistoryHost);

+ BraveCustomizeHistoryDataSource(source);
// Localized strings (alphabetical order).
source->AddLocalizedString("actionMenuDescription",
IDS_HISTORY_ACTION_MENU_DESCRIPTION);
1 change: 0 additions & 1 deletion ui/base/BUILD.gn
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
group("chromium_deps") {
deps = [
"//brave/ui/webui/resources",
"//brave/app:brave_generated_resources_grit",
]
}

0 comments on commit 9b4d029

Please sign in to comment.