diff --git a/browser/devtools/framework/toolbox.js b/browser/devtools/framework/toolbox.js index e94b8a3b6ff..29f3f63a641 100644 --- a/browser/devtools/framework/toolbox.js +++ b/browser/devtools/framework/toolbox.js @@ -411,15 +411,13 @@ Toolbox.prototype = { // Lazily connect to the profiler here and don't wait for it to complete, // used to intercept console.profile calls before the performance tools are open. - let profilerReady = this.initPerformance(); + let performanceFrontConnection = this.initPerformance(); - // However, while testing, we must wait for the performance connection to - // finish, as most tests shut down without waiting for a toolbox - // destruction event, resulting in the shared profiler connection being - // opened and closed outside of the test that originally opened the - // toolbox. + // If in testing environment, wait for performance connection to finish, + // so we don't have to explicitly wait for this in tests; ideally, all tests + // will handle this on their own, but each have their own tear down function. if (DevToolsUtils.testing) { - yield profilerReady; + yield performanceFrontConnection; } this.emit("ready"); @@ -1986,17 +1984,21 @@ Toolbox.prototype = { return; } - if (this.performance) { - yield this.performance.open(); - return this.performance; + if (this._performanceFrontConnection) { + return this._performanceFrontConnection.promise; } - this._performance = getPerformanceFront(this.target); + this._performanceFrontConnection = promise.defer(); + + this._performance = getPerformanceFront(this._target); + yield this.performance.open(); + // Emit an event when connected, but don't wait on startup for this. this.emit("profiler-connected"); - return this.performance; + this._performanceFrontConnection.resolve(this.performance); + return this._performanceFrontConnection.promise; }), /** @@ -2008,6 +2010,11 @@ Toolbox.prototype = { if (!this.performance) { return; } + // If still connecting to performance actor, allow the + // actor to resolve its connection before attempting to destroy. + if (this._performanceFrontConnection) { + yield this._performanceFrontConnection.promise; + } yield this.performance.destroy(); this._performance = null; }), diff --git a/browser/devtools/performance/test/head.js b/browser/devtools/performance/test/head.js index fa0be180ef6..d13572aadf5 100644 --- a/browser/devtools/performance/test/head.js +++ b/browser/devtools/performance/test/head.js @@ -222,6 +222,10 @@ function initPerformance(aUrl, tool="performance", targetOps={}) { merge(target, targetOps); let toolbox = yield gDevTools.showToolbox(target, tool); + + // Wait for the performance tool to be spun up + yield toolbox.initPerformance(); + let panel = toolbox.getCurrentPanel(); return { target, panel, toolbox }; }); diff --git a/browser/modules/ContentWebRTC.jsm b/browser/modules/ContentWebRTC.jsm index 38d3fc0d859..88b6d8316c8 100644 --- a/browser/modules/ContentWebRTC.jsm +++ b/browser/modules/ContentWebRTC.jsm @@ -26,6 +26,17 @@ this.ContentWebRTC = { Services.obs.addObserver(handlePCRequest, "PeerConnection:request", false); Services.obs.addObserver(updateIndicators, "recording-device-events", false); Services.obs.addObserver(removeBrowserSpecificIndicator, "recording-window-ended", false); + + if (Services.appinfo.processType == Services.appinfo.PROCESS_TYPE_CONTENT) + Services.obs.addObserver(processShutdown, "content-child-shutdown", false); + }, + + uninit: function() { + Services.obs.removeObserver(handleRequest, "getUserMedia:request"); + Services.obs.removeObserver(updateIndicators, "recording-device-events"); + Services.obs.removeObserver(removeBrowserSpecificIndicator, "recording-window-ended"); + Services.obs.removeObserver(processShutdown, "content-child-shutdown"); + this._initialized = false; }, // Called only for 'unload' to remove pending gUM prompts in reloaded frames. @@ -316,3 +327,7 @@ function getMessageManagerForWindow(aContentWindow) { return null; } } + +function processShutdown() { + ContentWebRTC.uninit(); +} diff --git a/browser/modules/webrtcUI.jsm b/browser/modules/webrtcUI.jsm index 8c7f71c6ddf..49874f9afdc 100644 --- a/browser/modules/webrtcUI.jsm +++ b/browser/modules/webrtcUI.jsm @@ -26,6 +26,7 @@ this.webrtcUI = { .getService(Ci.nsIMessageBroadcaster); ppmm.addMessageListener("webrtc:UpdatingIndicators", this); ppmm.addMessageListener("webrtc:UpdateGlobalIndicators", this); + ppmm.addMessageListener("child-process-shutdown", this); let mm = Cc["@mozilla.org/globalmessagemanager;1"] .getService(Ci.nsIMessageListenerManager); @@ -53,10 +54,47 @@ this.webrtcUI = { mm.removeMessageListener("webrtc:UpdateBrowserIndicators", this); }, - showGlobalIndicator: false, - showCameraIndicator: false, - showMicrophoneIndicator: false, - showScreenSharingIndicator: "", // either "Application", "Screen", "Window" or "Browser" + processIndicators: new Map(), + + get showGlobalIndicator() { + for (let [, indicators] of this.processIndicators) { + if (indicators.showGlobalIndicator) + return true; + } + return false; + }, + + get showCameraIndicator() { + for (let [, indicators] of this.processIndicators) { + if (indicators.showCameraIndicator) + return true; + } + return false; + }, + + get showMicrophoneIndicator() { + for (let [, indicators] of this.processIndicators) { + if (indicators.showMicrophoneIndicator) + return true; + } + return false; + }, + + get showScreenSharingIndicator() { + let list = [""]; + for (let [, indicators] of this.processIndicators) { + if (indicators.showScreenSharingIndicator) + list.push(indicators.showScreenSharingIndicator); + } + + let precedence = + ["Screen", "Window", "Application", "Browser", ""]; + + list.sort((a, b) => { return precedence.indexOf(a) - + precedence.indexOf(b); }); + + return list[0]; + }, _streams: [], // The boolean parameters indicate which streams should be included in the result. @@ -179,12 +217,16 @@ this.webrtcUI = { webrtcUI._streams = []; break; case "webrtc:UpdateGlobalIndicators": - updateIndicators(aMessage.data) + updateIndicators(aMessage.data, aMessage.target); break; case "webrtc:UpdateBrowserIndicators": webrtcUI._streams.push({browser: aMessage.target, state: aMessage.data}); updateBrowserSpecificIndicator(aMessage.target, aMessage.data); break; + case "child-process-shutdown": + webrtcUI.processIndicators.delete(aMessage.target); + updateIndicators(null, null); + break; } } }; @@ -741,11 +783,22 @@ function maybeAddMenuIndicator(window) { var gIndicatorWindow = null; -function updateIndicators(data) { - webrtcUI.showGlobalIndicator = data.showGlobalIndicator; - webrtcUI.showCameraIndicator = data.showCameraIndicator; - webrtcUI.showMicrophoneIndicator = data.showMicrophoneIndicator; - webrtcUI.showScreenSharingIndicator = data.showScreenSharingIndicator; +function updateIndicators(data, target) { + if (data) { + // the global indicators specific to this process + let indicators; + if (webrtcUI.processIndicators.has(target)) { + indicators = webrtcUI.processIndicators.get(target); + } else { + indicators = {}; + webrtcUI.processIndicators.set(target, indicators); + } + + indicators.showGlobalIndicator = data.showGlobalIndicator; + indicators.showCameraIndicator = data.showCameraIndicator; + indicators.showMicrophoneIndicator = data.showMicrophoneIndicator; + indicators.showScreenSharingIndicator = data.showScreenSharingIndicator; + } let browserWindowEnum = Services.wm.getEnumerator("navigator:browser"); while (browserWindowEnum.hasMoreElements()) { diff --git a/build/mobile/robocop/Makefile.in b/build/mobile/robocop/Makefile.in index 20f820fdaeb..c0c4d089b2d 100644 --- a/build/mobile/robocop/Makefile.in +++ b/build/mobile/robocop/Makefile.in @@ -11,8 +11,6 @@ ANDROID_EXTRA_JARS += \ $(srcdir)/robotium-solo-4.3.1.jar \ $(NULL) -ANDROID_ASSETS_DIR := $(TESTPATH)/assets - _JAVA_HARNESS := \ Actions.java \ Assert.java \ diff --git a/build/mobile/robocop/moz.build b/build/mobile/robocop/moz.build index 5145e1219a4..75bf630534f 100644 --- a/build/mobile/robocop/moz.build +++ b/build/mobile/robocop/moz.build @@ -7,6 +7,9 @@ DEFINES['ANDROID_PACKAGE_NAME'] = CONFIG['ANDROID_PACKAGE_NAME'] base = '/mobile/android/tests/browser/robocop/' + +ANDROID_ASSETS_DIRS += [base + 'assets'] + TEST_HARNESS_FILES.testing.mochitest += [ base + 'robocop.ini', base + 'robocop_autophone.ini', diff --git a/config/makefiles/java-build.mk b/config/makefiles/java-build.mk index 0960886108b..019745db58b 100644 --- a/config/makefiles/java-build.mk +++ b/config/makefiles/java-build.mk @@ -16,9 +16,9 @@ endif #} JAVAFILES ifdef ANDROID_APK_NAME #{ -android_res_dirs := $(addprefix $(srcdir)/,$(or $(ANDROID_RES_DIRS),res)) +android_res_dirs := $(or $(ANDROID_RES_DIRS),$(srcdir)/res) _ANDROID_RES_FLAG := $(addprefix -S ,$(android_res_dirs)) -_ANDROID_ASSETS_FLAG := $(addprefix -A ,$(ANDROID_ASSETS_DIR)) +_ANDROID_ASSETS_FLAG := $(if $(ANDROID_ASSETS_DIRS),$(addprefix -A ,$(ANDROID_ASSETS_DIRS))) android_manifest := $(or $(ANDROID_MANIFEST_FILE),AndroidManifest.xml) GENERATED_DIRS += classes @@ -45,7 +45,7 @@ $(ANDROID_APK_NAME).ap_: .aapt.deps ; # resource files one subdirectory below the parent resource directory. android_res_files := $(wildcard $(addsuffix /*,$(wildcard $(addsuffix /*,$(android_res_dirs))))) -.aapt.deps: $(android_manifest) $(android_res_files) $(wildcard $(ANDROID_ASSETS_DIR)) +.aapt.deps: $(android_manifest) $(android_res_files) $(wildcard $(ANDROID_ASSETS_DIRS)) @$(TOUCH) $@ $(AAPT) package -f -M $< -I $(ANDROID_SDK)/android.jar $(_ANDROID_RES_FLAG) $(_ANDROID_ASSETS_FLAG) \ -J ${@D} \ diff --git a/mobile/android/app/assets/example_asset.txt b/mobile/android/app/assets/example_asset.txt new file mode 100644 index 00000000000..34338f983ea --- /dev/null +++ b/mobile/android/app/assets/example_asset.txt @@ -0,0 +1 @@ +This is an example asset. diff --git a/mobile/android/base/Makefile.in b/mobile/android/base/Makefile.in index 6ab26b7a100..840761cb6ee 100644 --- a/mobile/android/base/Makefile.in +++ b/mobile/android/base/Makefile.in @@ -420,6 +420,7 @@ $(1): $$(call mkdir_deps,$(filter-out ./,$(dir $(3) $(4) $(5)))) $(2) $(if $(MOZ_ANDROID_MAX_SDK_VERSION),--max-res-version $(MOZ_ANDROID_MAX_SDK_VERSION),) \ --auto-add-overlay \ $$(addprefix -S ,$$(ANDROID_RES_DIRS)) \ + $$(addprefix -A ,$$(ANDROID_ASSETS_DIRS)) \ $(if $(extra_res_dirs),$$(addprefix -S ,$$(extra_res_dirs)),) \ $(if $(extra_packages),--extra-packages $$(extra_packages),) \ --custom-package org.mozilla.gecko \ diff --git a/mobile/android/base/moz.build b/mobile/android/base/moz.build index 82e16da0dbf..eff6bb5266f 100644 --- a/mobile/android/base/moz.build +++ b/mobile/android/base/moz.build @@ -579,7 +579,7 @@ gbjar.extra_jars += [ ] if CONFIG['MOZ_CRASHREPORTER']: gbjar.sources += [ 'CrashReporter.java' ] - ANDROID_RES_DIRS += [ SRCDIR + '/crashreporter/res' ] + ANDROID_RES_DIRS += [ 'crashreporter/res' ] if CONFIG['MOZ_ANDROID_SHARE_OVERLAY']: gbjar.sources += [ @@ -754,9 +754,9 @@ if CONFIG['MOZ_INSTALL_TRACKING']: # Putting branding earlier allows branders to override default resources. ANDROID_RES_DIRS += [ - TOPSRCDIR + '/' + CONFIG['MOZ_BRANDING_DIRECTORY'] + '/res', - SRCDIR + '/resources', - OBJDIR + '/res', + '/' + CONFIG['MOZ_BRANDING_DIRECTORY'] + '/res', + 'resources', + '!res', ] ANDROID_GENERATED_RESFILES += [ @@ -764,6 +764,10 @@ ANDROID_GENERATED_RESFILES += [ 'res/values/strings.xml', ] +ANDROID_ASSETS_DIRS += [ + '/mobile/android/app/assets', +] + # We do not expose MOZ_INSTALL_TRACKING_ADJUST_SDK_APP_TOKEN here because that # would leak the value to build logs. Instead we expose the token quietly where # appropriate in Makefile.in. diff --git a/mobile/android/base/resources/drawable-hdpi-v11/alert_addon.png b/mobile/android/base/resources/drawable-hdpi-v11/alert_addon.png index 9941bb41be6..8fe4074d7ed 100644 Binary files a/mobile/android/base/resources/drawable-hdpi-v11/alert_addon.png and b/mobile/android/base/resources/drawable-hdpi-v11/alert_addon.png differ diff --git a/mobile/android/base/resources/drawable-hdpi-v11/alert_app.png b/mobile/android/base/resources/drawable-hdpi-v11/alert_app.png index e2079c6d6ec..260bcd20592 100644 Binary files a/mobile/android/base/resources/drawable-hdpi-v11/alert_app.png and b/mobile/android/base/resources/drawable-hdpi-v11/alert_app.png differ diff --git a/mobile/android/base/resources/drawable-hdpi-v11/alert_camera.png b/mobile/android/base/resources/drawable-hdpi-v11/alert_camera.png index 9a4b48b439b..11800d0f10a 100644 Binary files a/mobile/android/base/resources/drawable-hdpi-v11/alert_camera.png and b/mobile/android/base/resources/drawable-hdpi-v11/alert_camera.png differ diff --git a/mobile/android/base/resources/drawable-hdpi-v11/alert_download.png b/mobile/android/base/resources/drawable-hdpi-v11/alert_download.png index 26cc6ee37dd..1b8f59e567b 100644 Binary files a/mobile/android/base/resources/drawable-hdpi-v11/alert_download.png and b/mobile/android/base/resources/drawable-hdpi-v11/alert_download.png differ diff --git a/mobile/android/base/resources/drawable-hdpi-v11/alert_guest.png b/mobile/android/base/resources/drawable-hdpi-v11/alert_guest.png index 02db6ab2d01..650b8246d14 100644 Binary files a/mobile/android/base/resources/drawable-hdpi-v11/alert_guest.png and b/mobile/android/base/resources/drawable-hdpi-v11/alert_guest.png differ diff --git a/mobile/android/base/resources/drawable-hdpi-v11/alert_mic.png b/mobile/android/base/resources/drawable-hdpi-v11/alert_mic.png index 418314ed755..4b0248b8bb4 100644 Binary files a/mobile/android/base/resources/drawable-hdpi-v11/alert_mic.png and b/mobile/android/base/resources/drawable-hdpi-v11/alert_mic.png differ diff --git a/mobile/android/base/resources/drawable-hdpi-v11/alert_mic_camera.png b/mobile/android/base/resources/drawable-hdpi-v11/alert_mic_camera.png index 458741aa124..091ec077dda 100644 Binary files a/mobile/android/base/resources/drawable-hdpi-v11/alert_mic_camera.png and b/mobile/android/base/resources/drawable-hdpi-v11/alert_mic_camera.png differ diff --git a/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_addons.png b/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_addons.png index b9b715c5a5c..8ddf067b161 100644 Binary files a/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_addons.png and b/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_addons.png differ diff --git a/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_bookmark_add.png b/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_bookmark_add.png index f91b2d097ee..44d4d113031 100644 Binary files a/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_bookmark_add.png and b/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_bookmark_add.png differ diff --git a/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_bookmark_remove.png b/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_bookmark_remove.png index 57dcc750566..09be9ac33e5 100644 Binary files a/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_bookmark_remove.png and b/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_bookmark_remove.png differ diff --git a/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_desktop_mode_off.png b/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_desktop_mode_off.png index e61fdf0ecbf..b15aa9740b9 100644 Binary files a/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_desktop_mode_off.png and b/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_desktop_mode_off.png differ diff --git a/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_desktop_mode_on.png b/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_desktop_mode_on.png index b67c830879a..1ff080ccd6c 100644 Binary files a/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_desktop_mode_on.png and b/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_desktop_mode_on.png differ diff --git a/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_downloads.png b/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_downloads.png index 3eab769ee95..3501f64a5be 100644 Binary files a/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_downloads.png and b/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_downloads.png differ diff --git a/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_find_in_page.png b/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_find_in_page.png index 23f66c0e8b0..acc5a428d89 100644 Binary files a/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_find_in_page.png and b/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_find_in_page.png differ diff --git a/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_forward.png b/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_forward.png index 4ad0f5cb20a..3a8db422f42 100644 Binary files a/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_forward.png and b/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_forward.png differ diff --git a/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_new_private_tab.png b/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_new_private_tab.png index 8fd6645a7ea..998709eda3a 100644 Binary files a/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_new_private_tab.png and b/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_new_private_tab.png differ diff --git a/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_new_tab.png b/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_new_tab.png index 502ae989c4c..c996879ec61 100644 Binary files a/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_new_tab.png and b/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_new_tab.png differ diff --git a/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_quit.png b/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_quit.png index 4aec63cc134..f80c09f6710 100644 Binary files a/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_quit.png and b/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_quit.png differ diff --git a/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_reader_add_asset.png b/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_reader_add_asset.png index 006b0fe0063..bb4242271ac 100644 Binary files a/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_reader_add_asset.png and b/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_reader_add_asset.png differ diff --git a/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_reader_remove_asset.png b/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_reader_remove_asset.png index f9eeebc9948..73d9061317f 100644 Binary files a/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_reader_remove_asset.png and b/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_reader_remove_asset.png differ diff --git a/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_reload.png b/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_reload.png index c9172a62e19..d0ae488c765 100644 Binary files a/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_reload.png and b/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_reload.png differ diff --git a/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_settings.png b/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_settings.png index ef13f026ca2..6eaa1ced064 100644 Binary files a/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_settings.png and b/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_settings.png differ diff --git a/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_tools.png b/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_tools.png index 861038f4c3e..e5f3210974c 100644 Binary files a/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_tools.png and b/mobile/android/base/resources/drawable-hdpi-v11/ic_menu_tools.png differ diff --git a/mobile/android/base/resources/drawable-hdpi-v11/ic_status_logo.png b/mobile/android/base/resources/drawable-hdpi-v11/ic_status_logo.png index 4fe0e14bc6d..5524dd072fb 100644 Binary files a/mobile/android/base/resources/drawable-hdpi-v11/ic_status_logo.png and b/mobile/android/base/resources/drawable-hdpi-v11/ic_status_logo.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/ab_add_search_engine.png b/mobile/android/base/resources/drawable-hdpi/ab_add_search_engine.png index 9744554c642..77b99cdc778 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/ab_add_search_engine.png and b/mobile/android/base/resources/drawable-hdpi/ab_add_search_engine.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/ab_background.9.png b/mobile/android/base/resources/drawable-hdpi/ab_background.9.png index 8cb5bc879e6..5d6242cf04f 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/ab_background.9.png and b/mobile/android/base/resources/drawable-hdpi/ab_background.9.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/ab_copy.png b/mobile/android/base/resources/drawable-hdpi/ab_copy.png index ca2b0001d0b..6bf796c4f54 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/ab_copy.png and b/mobile/android/base/resources/drawable-hdpi/ab_copy.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/ab_cut.png b/mobile/android/base/resources/drawable-hdpi/ab_cut.png index e79708f88fe..0b41f5431c8 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/ab_cut.png and b/mobile/android/base/resources/drawable-hdpi/ab_cut.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/ab_done.png b/mobile/android/base/resources/drawable-hdpi/ab_done.png index 13cdda335f3..6b81da3c078 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/ab_done.png and b/mobile/android/base/resources/drawable-hdpi/ab_done.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/ab_mic.png b/mobile/android/base/resources/drawable-hdpi/ab_mic.png index 6129631b2fb..13f8eb356e5 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/ab_mic.png and b/mobile/android/base/resources/drawable-hdpi/ab_mic.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/ab_search.png b/mobile/android/base/resources/drawable-hdpi/ab_search.png index 16da0b59ecf..0d217f11a1c 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/ab_search.png and b/mobile/android/base/resources/drawable-hdpi/ab_search.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/ab_select_all.png b/mobile/android/base/resources/drawable-hdpi/ab_select_all.png index 86b6d2cd888..7488ed57136 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/ab_select_all.png and b/mobile/android/base/resources/drawable-hdpi/ab_select_all.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/alert_addon.png b/mobile/android/base/resources/drawable-hdpi/alert_addon.png index 1b3cbd26f9a..6fa4fc2a3e5 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/alert_addon.png and b/mobile/android/base/resources/drawable-hdpi/alert_addon.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/alert_app.png b/mobile/android/base/resources/drawable-hdpi/alert_app.png index 6b784687335..0f2bafb4598 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/alert_app.png and b/mobile/android/base/resources/drawable-hdpi/alert_app.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/alert_app_animation_1.png b/mobile/android/base/resources/drawable-hdpi/alert_app_animation_1.png index a4d50bc46c4..8e41ad31f58 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/alert_app_animation_1.png and b/mobile/android/base/resources/drawable-hdpi/alert_app_animation_1.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/alert_app_animation_2.png b/mobile/android/base/resources/drawable-hdpi/alert_app_animation_2.png index 865875257f0..2d92a2d9ef5 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/alert_app_animation_2.png and b/mobile/android/base/resources/drawable-hdpi/alert_app_animation_2.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/alert_app_animation_3.png b/mobile/android/base/resources/drawable-hdpi/alert_app_animation_3.png index 202f6370f0f..fa66a780b56 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/alert_app_animation_3.png and b/mobile/android/base/resources/drawable-hdpi/alert_app_animation_3.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/alert_app_animation_4.png b/mobile/android/base/resources/drawable-hdpi/alert_app_animation_4.png index 75c4d3091fa..53b9fad8570 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/alert_app_animation_4.png and b/mobile/android/base/resources/drawable-hdpi/alert_app_animation_4.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/alert_app_animation_5.png b/mobile/android/base/resources/drawable-hdpi/alert_app_animation_5.png index 575aa9def24..2742d40082c 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/alert_app_animation_5.png and b/mobile/android/base/resources/drawable-hdpi/alert_app_animation_5.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/alert_app_animation_6.png b/mobile/android/base/resources/drawable-hdpi/alert_app_animation_6.png index c2021eb2960..ce8b92232c4 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/alert_app_animation_6.png and b/mobile/android/base/resources/drawable-hdpi/alert_app_animation_6.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/alert_app_animation_7.png b/mobile/android/base/resources/drawable-hdpi/alert_app_animation_7.png index 42551c6a37d..50fbf4995a9 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/alert_app_animation_7.png and b/mobile/android/base/resources/drawable-hdpi/alert_app_animation_7.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/alert_camera.png b/mobile/android/base/resources/drawable-hdpi/alert_camera.png index 0876b7e8a7e..6ae4be07871 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/alert_camera.png and b/mobile/android/base/resources/drawable-hdpi/alert_camera.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/alert_download.png b/mobile/android/base/resources/drawable-hdpi/alert_download.png index 5405ba73b68..b55e779fc67 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/alert_download.png and b/mobile/android/base/resources/drawable-hdpi/alert_download.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/alert_download_animation_1.png b/mobile/android/base/resources/drawable-hdpi/alert_download_animation_1.png index 2e9767de8b6..283ba086731 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/alert_download_animation_1.png and b/mobile/android/base/resources/drawable-hdpi/alert_download_animation_1.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/alert_download_animation_2.png b/mobile/android/base/resources/drawable-hdpi/alert_download_animation_2.png index 8c8743e3a8f..1a0e5f7c663 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/alert_download_animation_2.png and b/mobile/android/base/resources/drawable-hdpi/alert_download_animation_2.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/alert_download_animation_3.png b/mobile/android/base/resources/drawable-hdpi/alert_download_animation_3.png index 4f9aadab299..641fd18ecec 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/alert_download_animation_3.png and b/mobile/android/base/resources/drawable-hdpi/alert_download_animation_3.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/alert_download_animation_4.png b/mobile/android/base/resources/drawable-hdpi/alert_download_animation_4.png index 7449b954616..7c4312b69ab 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/alert_download_animation_4.png and b/mobile/android/base/resources/drawable-hdpi/alert_download_animation_4.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/alert_download_animation_5.png b/mobile/android/base/resources/drawable-hdpi/alert_download_animation_5.png index e2a5e30beac..115a41c8713 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/alert_download_animation_5.png and b/mobile/android/base/resources/drawable-hdpi/alert_download_animation_5.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/alert_download_animation_6.png b/mobile/android/base/resources/drawable-hdpi/alert_download_animation_6.png index 628e4f59a4f..ae5f4d7b652 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/alert_download_animation_6.png and b/mobile/android/base/resources/drawable-hdpi/alert_download_animation_6.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/alert_guest.png b/mobile/android/base/resources/drawable-hdpi/alert_guest.png index ce7f04c648c..17fc059c3e0 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/alert_guest.png and b/mobile/android/base/resources/drawable-hdpi/alert_guest.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/alert_mic.png b/mobile/android/base/resources/drawable-hdpi/alert_mic.png index b22a3fac979..d218bc88c49 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/alert_mic.png and b/mobile/android/base/resources/drawable-hdpi/alert_mic.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/alert_mic_camera.png b/mobile/android/base/resources/drawable-hdpi/alert_mic_camera.png index d0cdca243c6..ef33012b576 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/alert_mic_camera.png and b/mobile/android/base/resources/drawable-hdpi/alert_mic_camera.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/blank.png b/mobile/android/base/resources/drawable-hdpi/blank.png index a9b6b2240e7..56535e7efd3 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/blank.png and b/mobile/android/base/resources/drawable-hdpi/blank.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/bookmark_folder_closed.png b/mobile/android/base/resources/drawable-hdpi/bookmark_folder_closed.png index d544c662a5b..bb879595bcb 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/bookmark_folder_closed.png and b/mobile/android/base/resources/drawable-hdpi/bookmark_folder_closed.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/casting.png b/mobile/android/base/resources/drawable-hdpi/casting.png index f3e70cc10e8..3da63dc55b8 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/casting.png and b/mobile/android/base/resources/drawable-hdpi/casting.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/casting_active.png b/mobile/android/base/resources/drawable-hdpi/casting_active.png index 4bd3b344bc1..baf55c4cced 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/casting_active.png and b/mobile/android/base/resources/drawable-hdpi/casting_active.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/close.png b/mobile/android/base/resources/drawable-hdpi/close.png index 194deea9d2e..b14612fa0c5 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/close.png and b/mobile/android/base/resources/drawable-hdpi/close.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/close_edit_mode_dark.png b/mobile/android/base/resources/drawable-hdpi/close_edit_mode_dark.png index 0971f0eab0a..1e28f00c5bc 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/close_edit_mode_dark.png and b/mobile/android/base/resources/drawable-hdpi/close_edit_mode_dark.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/close_edit_mode_light.png b/mobile/android/base/resources/drawable-hdpi/close_edit_mode_light.png index eaca5758394..4c82e5696ef 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/close_edit_mode_light.png and b/mobile/android/base/resources/drawable-hdpi/close_edit_mode_light.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/color_picker_row_bg.9.png b/mobile/android/base/resources/drawable-hdpi/color_picker_row_bg.9.png index 373e1a347a5..50460696abf 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/color_picker_row_bg.9.png and b/mobile/android/base/resources/drawable-hdpi/color_picker_row_bg.9.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/device_desktop.png b/mobile/android/base/resources/drawable-hdpi/device_desktop.png index fa40ee68864..ef5300abd6f 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/device_desktop.png and b/mobile/android/base/resources/drawable-hdpi/device_desktop.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/device_mobile.png b/mobile/android/base/resources/drawable-hdpi/device_mobile.png index 7d60b1e2073..6e58c944955 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/device_mobile.png and b/mobile/android/base/resources/drawable-hdpi/device_mobile.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/dropshadow.9.png b/mobile/android/base/resources/drawable-hdpi/dropshadow.9.png index 00a2c0f1c1d..1273996c548 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/dropshadow.9.png and b/mobile/android/base/resources/drawable-hdpi/dropshadow.9.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/favicon_globe.png b/mobile/android/base/resources/drawable-hdpi/favicon_globe.png index a87c16e3d56..235af272086 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/favicon_globe.png and b/mobile/android/base/resources/drawable-hdpi/favicon_globe.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/find_close.png b/mobile/android/base/resources/drawable-hdpi/find_close.png index 093074ae748..e98f59e6867 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/find_close.png and b/mobile/android/base/resources/drawable-hdpi/find_close.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/find_next.png b/mobile/android/base/resources/drawable-hdpi/find_next.png index afdeb8d802f..788f45c7ea5 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/find_next.png and b/mobile/android/base/resources/drawable-hdpi/find_next.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/find_prev.png b/mobile/android/base/resources/drawable-hdpi/find_prev.png index 25a766d357e..4c40a1e8ab2 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/find_prev.png and b/mobile/android/base/resources/drawable-hdpi/find_prev.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/firefox_settings_alert.png b/mobile/android/base/resources/drawable-hdpi/firefox_settings_alert.png index a099f50c6da..7094c9aad55 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/firefox_settings_alert.png and b/mobile/android/base/resources/drawable-hdpi/firefox_settings_alert.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/flat_icon.png b/mobile/android/base/resources/drawable-hdpi/flat_icon.png index 358a80ce54e..d4b946f086a 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/flat_icon.png and b/mobile/android/base/resources/drawable-hdpi/flat_icon.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/folder_up.png b/mobile/android/base/resources/drawable-hdpi/folder_up.png index 9d7bfcc8bc8..2d57a8b6a91 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/folder_up.png and b/mobile/android/base/resources/drawable-hdpi/folder_up.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/fxaccount_checkbox.png b/mobile/android/base/resources/drawable-hdpi/fxaccount_checkbox.png index d822956376f..ef9f9ea16a2 100755 Binary files a/mobile/android/base/resources/drawable-hdpi/fxaccount_checkbox.png and b/mobile/android/base/resources/drawable-hdpi/fxaccount_checkbox.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/fxaccount_ddarrow_inactive.png b/mobile/android/base/resources/drawable-hdpi/fxaccount_ddarrow_inactive.png index 195aa3dff88..c8b4cbbcb1b 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/fxaccount_ddarrow_inactive.png and b/mobile/android/base/resources/drawable-hdpi/fxaccount_ddarrow_inactive.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/fxaccount_intro.png b/mobile/android/base/resources/drawable-hdpi/fxaccount_intro.png index 69f289b89e2..635343180c9 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/fxaccount_intro.png and b/mobile/android/base/resources/drawable-hdpi/fxaccount_intro.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/fxaccount_mail.png b/mobile/android/base/resources/drawable-hdpi/fxaccount_mail.png index 3fe9c4af023..36540e5f356 100755 Binary files a/mobile/android/base/resources/drawable-hdpi/fxaccount_mail.png and b/mobile/android/base/resources/drawable-hdpi/fxaccount_mail.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/globe_light.png b/mobile/android/base/resources/drawable-hdpi/globe_light.png index 3a0e7a4339d..b466ffe4802 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/globe_light.png and b/mobile/android/base/resources/drawable-hdpi/globe_light.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/grid_icon_bg_activated.9.png b/mobile/android/base/resources/drawable-hdpi/grid_icon_bg_activated.9.png index 4ff910fdab2..d2ca3fdd434 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/grid_icon_bg_activated.9.png and b/mobile/android/base/resources/drawable-hdpi/grid_icon_bg_activated.9.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/grid_icon_bg_focused.9.png b/mobile/android/base/resources/drawable-hdpi/grid_icon_bg_focused.9.png index 627bf1e0110..510d297ea6a 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/grid_icon_bg_focused.9.png and b/mobile/android/base/resources/drawable-hdpi/grid_icon_bg_focused.9.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/handle_end.png b/mobile/android/base/resources/drawable-hdpi/handle_end.png index c380c607388..c4f178a281f 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/handle_end.png and b/mobile/android/base/resources/drawable-hdpi/handle_end.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/handle_middle.png b/mobile/android/base/resources/drawable-hdpi/handle_middle.png index 1a8af556666..1fd38b656a3 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/handle_middle.png and b/mobile/android/base/resources/drawable-hdpi/handle_middle.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/handle_start.png b/mobile/android/base/resources/drawable-hdpi/handle_start.png index a7e18873bc3..b99f460e303 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/handle_start.png and b/mobile/android/base/resources/drawable-hdpi/handle_start.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/home_bg.png b/mobile/android/base/resources/drawable-hdpi/home_bg.png index d5fde6aca99..6cde3482541 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/home_bg.png and b/mobile/android/base/resources/drawable-hdpi/home_bg.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/home_group_collapsed.png b/mobile/android/base/resources/drawable-hdpi/home_group_collapsed.png index 2fc59ca9653..ca2f764f186 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/home_group_collapsed.png and b/mobile/android/base/resources/drawable-hdpi/home_group_collapsed.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/home_group_expanded.png b/mobile/android/base/resources/drawable-hdpi/home_group_expanded.png index 0ad2de2fde2..d1e602d67dd 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/home_group_expanded.png and b/mobile/android/base/resources/drawable-hdpi/home_group_expanded.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/home_star.png b/mobile/android/base/resources/drawable-hdpi/home_star.png index a101aa23940..be3fcd7f815 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/home_star.png and b/mobile/android/base/resources/drawable-hdpi/home_star.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/home_tab_menu_strip.9.png b/mobile/android/base/resources/drawable-hdpi/home_tab_menu_strip.9.png index 7f2986af2a5..319cc773c27 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/home_tab_menu_strip.9.png and b/mobile/android/base/resources/drawable-hdpi/home_tab_menu_strip.9.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/homepage_banner_firstrun.png b/mobile/android/base/resources/drawable-hdpi/homepage_banner_firstrun.png index e6d1fba27cf..915eac7de29 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/homepage_banner_firstrun.png and b/mobile/android/base/resources/drawable-hdpi/homepage_banner_firstrun.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/ic_action_settings.png b/mobile/android/base/resources/drawable-hdpi/ic_action_settings.png index 38129ea360e..de96174a31c 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/ic_action_settings.png and b/mobile/android/base/resources/drawable-hdpi/ic_action_settings.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/ic_menu_addons_filler.png b/mobile/android/base/resources/drawable-hdpi/ic_menu_addons_filler.png index c35e0779063..c70abaae384 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/ic_menu_addons_filler.png and b/mobile/android/base/resources/drawable-hdpi/ic_menu_addons_filler.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/ic_menu_back.png b/mobile/android/base/resources/drawable-hdpi/ic_menu_back.png index 0d3f9e194cc..d0ec44a9675 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/ic_menu_back.png and b/mobile/android/base/resources/drawable-hdpi/ic_menu_back.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/ic_menu_bookmark_add.png b/mobile/android/base/resources/drawable-hdpi/ic_menu_bookmark_add.png index 1a9f7624435..03a57c998cb 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/ic_menu_bookmark_add.png and b/mobile/android/base/resources/drawable-hdpi/ic_menu_bookmark_add.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/ic_menu_bookmark_remove.png b/mobile/android/base/resources/drawable-hdpi/ic_menu_bookmark_remove.png index 1ff2b7d0652..ff3064dd146 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/ic_menu_bookmark_remove.png and b/mobile/android/base/resources/drawable-hdpi/ic_menu_bookmark_remove.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/ic_menu_character_encoding.png b/mobile/android/base/resources/drawable-hdpi/ic_menu_character_encoding.png index da52c118a55..3cfc5d33e54 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/ic_menu_character_encoding.png and b/mobile/android/base/resources/drawable-hdpi/ic_menu_character_encoding.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/ic_menu_forward.png b/mobile/android/base/resources/drawable-hdpi/ic_menu_forward.png index 91c706644f4..99138a56b96 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/ic_menu_forward.png and b/mobile/android/base/resources/drawable-hdpi/ic_menu_forward.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/ic_menu_guest.png b/mobile/android/base/resources/drawable-hdpi/ic_menu_guest.png index b44adcedbf8..cb207f832aa 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/ic_menu_guest.png and b/mobile/android/base/resources/drawable-hdpi/ic_menu_guest.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/ic_menu_new_private_tab.png b/mobile/android/base/resources/drawable-hdpi/ic_menu_new_private_tab.png index 733ad91a0a8..496ff3517df 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/ic_menu_new_private_tab.png and b/mobile/android/base/resources/drawable-hdpi/ic_menu_new_private_tab.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/ic_menu_new_tab.png b/mobile/android/base/resources/drawable-hdpi/ic_menu_new_tab.png index e04842e4eed..d7c6dfa117f 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/ic_menu_new_tab.png and b/mobile/android/base/resources/drawable-hdpi/ic_menu_new_tab.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/ic_menu_reload.png b/mobile/android/base/resources/drawable-hdpi/ic_menu_reload.png index 0ee535d9b8d..24026f9c070 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/ic_menu_reload.png and b/mobile/android/base/resources/drawable-hdpi/ic_menu_reload.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/ic_menu_share.png b/mobile/android/base/resources/drawable-hdpi/ic_menu_share.png index 74281e253b9..66a0ad1983c 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/ic_menu_share.png and b/mobile/android/base/resources/drawable-hdpi/ic_menu_share.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/ic_status_logo.png b/mobile/android/base/resources/drawable-hdpi/ic_status_logo.png index b0b7d7b55bd..4cd8e3c0712 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/ic_status_logo.png and b/mobile/android/base/resources/drawable-hdpi/ic_status_logo.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/ic_url_bar_star.png b/mobile/android/base/resources/drawable-hdpi/ic_url_bar_star.png index 70c0ae37cc5..bf18ebeb035 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/ic_url_bar_star.png and b/mobile/android/base/resources/drawable-hdpi/ic_url_bar_star.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/ic_url_bar_tab.png b/mobile/android/base/resources/drawable-hdpi/ic_url_bar_tab.png index 104be017d47..97272c7f801 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/ic_url_bar_tab.png and b/mobile/android/base/resources/drawable-hdpi/ic_url_bar_tab.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/ic_widget_new_tab.png b/mobile/android/base/resources/drawable-hdpi/ic_widget_new_tab.png index 1067fa19b7e..48a96641400 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/ic_widget_new_tab.png and b/mobile/android/base/resources/drawable-hdpi/ic_widget_new_tab.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/ic_widget_search.png b/mobile/android/base/resources/drawable-hdpi/ic_widget_search.png index 7eecf6879ec..c885787b6fe 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/ic_widget_search.png and b/mobile/android/base/resources/drawable-hdpi/ic_widget_search.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/icon_bookmarks_empty.png b/mobile/android/base/resources/drawable-hdpi/icon_bookmarks_empty.png index 01d29811780..a3645a054b8 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/icon_bookmarks_empty.png and b/mobile/android/base/resources/drawable-hdpi/icon_bookmarks_empty.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/icon_home_empty_firefox.png b/mobile/android/base/resources/drawable-hdpi/icon_home_empty_firefox.png index 3806cf69fdf..2a490d7ac86 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/icon_home_empty_firefox.png and b/mobile/android/base/resources/drawable-hdpi/icon_home_empty_firefox.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/icon_key.png b/mobile/android/base/resources/drawable-hdpi/icon_key.png index ad60f8e400d..bc742e161e1 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/icon_key.png and b/mobile/android/base/resources/drawable-hdpi/icon_key.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/icon_most_recent_empty.png b/mobile/android/base/resources/drawable-hdpi/icon_most_recent_empty.png index d3650f4bfae..92b41a224a2 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/icon_most_recent_empty.png and b/mobile/android/base/resources/drawable-hdpi/icon_most_recent_empty.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/icon_openinapp.png b/mobile/android/base/resources/drawable-hdpi/icon_openinapp.png index 89fb66f1c57..0527956daae 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/icon_openinapp.png and b/mobile/android/base/resources/drawable-hdpi/icon_openinapp.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/icon_pageaction.png b/mobile/android/base/resources/drawable-hdpi/icon_pageaction.png index a77c86c06da..2b4b09003c5 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/icon_pageaction.png and b/mobile/android/base/resources/drawable-hdpi/icon_pageaction.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/icon_reading_list_empty.png b/mobile/android/base/resources/drawable-hdpi/icon_reading_list_empty.png index 818cf44eeb0..e4c59010195 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/icon_reading_list_empty.png and b/mobile/android/base/resources/drawable-hdpi/icon_reading_list_empty.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/icon_remote_tabs_empty.png b/mobile/android/base/resources/drawable-hdpi/icon_remote_tabs_empty.png index 7f96aee70ef..e520d2db85f 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/icon_remote_tabs_empty.png and b/mobile/android/base/resources/drawable-hdpi/icon_remote_tabs_empty.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/icon_search_empty_firefox.png b/mobile/android/base/resources/drawable-hdpi/icon_search_empty_firefox.png index 34349032416..fd271d42335 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/icon_search_empty_firefox.png and b/mobile/android/base/resources/drawable-hdpi/icon_search_empty_firefox.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/icon_shareplane.png b/mobile/android/base/resources/drawable-hdpi/icon_shareplane.png index 5bd8e8b7074..cdc6e01ae77 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/icon_shareplane.png and b/mobile/android/base/resources/drawable-hdpi/icon_shareplane.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/img_check.png b/mobile/android/base/resources/drawable-hdpi/img_check.png index d6e11f8f8a6..bb01e07713e 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/img_check.png and b/mobile/android/base/resources/drawable-hdpi/img_check.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/location.png b/mobile/android/base/resources/drawable-hdpi/location.png index a83c098b368..2843f846639 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/location.png and b/mobile/android/base/resources/drawable-hdpi/location.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/lock_disabled.png b/mobile/android/base/resources/drawable-hdpi/lock_disabled.png index 0ae0dd3bee6..e7f3eb56cfc 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/lock_disabled.png and b/mobile/android/base/resources/drawable-hdpi/lock_disabled.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/lock_inactive.png b/mobile/android/base/resources/drawable-hdpi/lock_inactive.png index 22163c303eb..d2e7e1d3d25 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/lock_inactive.png and b/mobile/android/base/resources/drawable-hdpi/lock_inactive.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/lock_secure.png b/mobile/android/base/resources/drawable-hdpi/lock_secure.png index f6fc278bd50..1cc41219f19 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/lock_secure.png and b/mobile/android/base/resources/drawable-hdpi/lock_secure.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/media_bar_pause.png b/mobile/android/base/resources/drawable-hdpi/media_bar_pause.png index 8ac36f0a578..46e838347b5 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/media_bar_pause.png and b/mobile/android/base/resources/drawable-hdpi/media_bar_pause.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/media_bar_play.png b/mobile/android/base/resources/drawable-hdpi/media_bar_play.png index ba5a0f062ef..36f0797f768 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/media_bar_play.png and b/mobile/android/base/resources/drawable-hdpi/media_bar_play.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/media_bar_stop.png b/mobile/android/base/resources/drawable-hdpi/media_bar_stop.png index 1b817abf708..db971c20f28 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/media_bar_stop.png and b/mobile/android/base/resources/drawable-hdpi/media_bar_stop.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/menu.png b/mobile/android/base/resources/drawable-hdpi/menu.png index 286b971b537..8c1cc8eae56 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/menu.png and b/mobile/android/base/resources/drawable-hdpi/menu.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/menu_item_check.png b/mobile/android/base/resources/drawable-hdpi/menu_item_check.png index e724c545dd4..1b636953d3d 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/menu_item_check.png and b/mobile/android/base/resources/drawable-hdpi/menu_item_check.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/menu_item_more.png b/mobile/android/base/resources/drawable-hdpi/menu_item_more.png index 1edddc20b6f..509e8de55b2 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/menu_item_more.png and b/mobile/android/base/resources/drawable-hdpi/menu_item_more.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/menu_item_uncheck.png b/mobile/android/base/resources/drawable-hdpi/menu_item_uncheck.png index 64e867d4551..3c81bb6b2eb 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/menu_item_uncheck.png and b/mobile/android/base/resources/drawable-hdpi/menu_item_uncheck.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/menu_light.png b/mobile/android/base/resources/drawable-hdpi/menu_light.png index 0590b4eabdc..ec0857ffd21 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/menu_light.png and b/mobile/android/base/resources/drawable-hdpi/menu_light.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/menu_panel_bg.9.png b/mobile/android/base/resources/drawable-hdpi/menu_panel_bg.9.png index 5142bf380e0..6c3bda221e1 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/menu_panel_bg.9.png and b/mobile/android/base/resources/drawable-hdpi/menu_panel_bg.9.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/menu_popup_bg.9.png b/mobile/android/base/resources/drawable-hdpi/menu_popup_bg.9.png index 03f2134c82b..793a79f20eb 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/menu_popup_bg.9.png and b/mobile/android/base/resources/drawable-hdpi/menu_popup_bg.9.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/network_error.png b/mobile/android/base/resources/drawable-hdpi/network_error.png index bd56d00f7fe..bdaa961d341 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/network_error.png and b/mobile/android/base/resources/drawable-hdpi/network_error.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/new_tablet_tab_close.png b/mobile/android/base/resources/drawable-hdpi/new_tablet_tab_close.png index 735f8ac1cd9..ec4313c0804 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/new_tablet_tab_close.png and b/mobile/android/base/resources/drawable-hdpi/new_tablet_tab_close.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/overlay_bookmark_icon.png b/mobile/android/base/resources/drawable-hdpi/overlay_bookmark_icon.png index 30d032ea979..6cb5559934e 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/overlay_bookmark_icon.png and b/mobile/android/base/resources/drawable-hdpi/overlay_bookmark_icon.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/overlay_bookmarked_already_icon.png b/mobile/android/base/resources/drawable-hdpi/overlay_bookmarked_already_icon.png index 552ea85be4a..c5f91c58d94 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/overlay_bookmarked_already_icon.png and b/mobile/android/base/resources/drawable-hdpi/overlay_bookmarked_already_icon.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/overlay_check.png b/mobile/android/base/resources/drawable-hdpi/overlay_check.png index 067c3523689..744cfba5f34 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/overlay_check.png and b/mobile/android/base/resources/drawable-hdpi/overlay_check.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/overlay_readinglist_already_icon.png b/mobile/android/base/resources/drawable-hdpi/overlay_readinglist_already_icon.png index 7017da785d4..e40cd0c09ac 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/overlay_readinglist_already_icon.png and b/mobile/android/base/resources/drawable-hdpi/overlay_readinglist_already_icon.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/overlay_readinglist_icon.png b/mobile/android/base/resources/drawable-hdpi/overlay_readinglist_icon.png index 400cde2f5d1..90402468bfe 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/overlay_readinglist_icon.png and b/mobile/android/base/resources/drawable-hdpi/overlay_readinglist_icon.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/overlay_send_tab_icon.png b/mobile/android/base/resources/drawable-hdpi/overlay_send_tab_icon.png index ab12b9dfc3c..748893b493c 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/overlay_send_tab_icon.png and b/mobile/android/base/resources/drawable-hdpi/overlay_send_tab_icon.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/pause.png b/mobile/android/base/resources/drawable-hdpi/pause.png index 51ac1556259..17266e60897 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/pause.png and b/mobile/android/base/resources/drawable-hdpi/pause.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/pin.png b/mobile/android/base/resources/drawable-hdpi/pin.png index 33ceb14034b..8111a04dc74 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/pin.png and b/mobile/android/base/resources/drawable-hdpi/pin.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/play.png b/mobile/android/base/resources/drawable-hdpi/play.png index f2ec98b3044..8e599c16db6 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/play.png and b/mobile/android/base/resources/drawable-hdpi/play.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/progress.9.png b/mobile/android/base/resources/drawable-hdpi/progress.9.png index 263b40582d4..5293a77d432 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/progress.9.png and b/mobile/android/base/resources/drawable-hdpi/progress.9.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/reader.png b/mobile/android/base/resources/drawable-hdpi/reader.png index acb2f5a3ea6..2ac1b8d46a2 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/reader.png and b/mobile/android/base/resources/drawable-hdpi/reader.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/reader_active.png b/mobile/android/base/resources/drawable-hdpi/reader_active.png index 3a89882014a..99851ae7c56 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/reader_active.png and b/mobile/android/base/resources/drawable-hdpi/reader_active.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/reader_cropped.png b/mobile/android/base/resources/drawable-hdpi/reader_cropped.png index 3a7cbcbac77..6affe57a90f 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/reader_cropped.png and b/mobile/android/base/resources/drawable-hdpi/reader_cropped.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/search_clear.png b/mobile/android/base/resources/drawable-hdpi/search_clear.png index 703c25d3a5c..4dbefcb6873 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/search_clear.png and b/mobile/android/base/resources/drawable-hdpi/search_clear.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/search_history.png b/mobile/android/base/resources/drawable-hdpi/search_history.png index c609100e9c3..a552fef20d9 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/search_history.png and b/mobile/android/base/resources/drawable-hdpi/search_history.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/search_icon_active.png b/mobile/android/base/resources/drawable-hdpi/search_icon_active.png index a957030806a..65e921896c6 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/search_icon_active.png and b/mobile/android/base/resources/drawable-hdpi/search_icon_active.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/search_icon_inactive.png b/mobile/android/base/resources/drawable-hdpi/search_icon_inactive.png index 8ce678fd3d5..b777bc3be9e 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/search_icon_inactive.png and b/mobile/android/base/resources/drawable-hdpi/search_icon_inactive.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/search_plus.png b/mobile/android/base/resources/drawable-hdpi/search_plus.png index 3f56ee1e60e..e20d9c6d294 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/search_plus.png and b/mobile/android/base/resources/drawable-hdpi/search_plus.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/shield_disabled.png b/mobile/android/base/resources/drawable-hdpi/shield_disabled.png index 0e9b94ddd0b..90f669af28e 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/shield_disabled.png and b/mobile/android/base/resources/drawable-hdpi/shield_disabled.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/shield_enabled.png b/mobile/android/base/resources/drawable-hdpi/shield_enabled.png index 662efa7e8e3..ff6fb6d8078 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/shield_enabled.png and b/mobile/android/base/resources/drawable-hdpi/shield_enabled.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/suggestedsites_fxaddons.png b/mobile/android/base/resources/drawable-hdpi/suggestedsites_fxaddons.png index fd57fe4604d..579c7ca87bf 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/suggestedsites_fxaddons.png and b/mobile/android/base/resources/drawable-hdpi/suggestedsites_fxaddons.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/suggestedsites_fxmarketplace.png b/mobile/android/base/resources/drawable-hdpi/suggestedsites_fxmarketplace.png index fbc3b4a37f9..e52ea09e4e3 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/suggestedsites_fxmarketplace.png and b/mobile/android/base/resources/drawable-hdpi/suggestedsites_fxmarketplace.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/suggestedsites_fxsupport.png b/mobile/android/base/resources/drawable-hdpi/suggestedsites_fxsupport.png index d43991dd7a0..12ca2c54e72 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/suggestedsites_fxsupport.png and b/mobile/android/base/resources/drawable-hdpi/suggestedsites_fxsupport.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/suggestedsites_mozilla.png b/mobile/android/base/resources/drawable-hdpi/suggestedsites_mozilla.png index 2d0b9cb5055..e2269cb6823 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/suggestedsites_mozilla.png and b/mobile/android/base/resources/drawable-hdpi/suggestedsites_mozilla.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/switch_button_icon.png b/mobile/android/base/resources/drawable-hdpi/switch_button_icon.png index e624ef4db5c..56c4cd05060 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/switch_button_icon.png and b/mobile/android/base/resources/drawable-hdpi/switch_button_icon.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/sync_avatar_default.png b/mobile/android/base/resources/drawable-hdpi/sync_avatar_default.png index e79f07af065..caa6ed2466b 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/sync_avatar_default.png and b/mobile/android/base/resources/drawable-hdpi/sync_avatar_default.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/sync_desktop.png b/mobile/android/base/resources/drawable-hdpi/sync_desktop.png index 81477dd62d5..abf87f16cbe 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/sync_desktop.png and b/mobile/android/base/resources/drawable-hdpi/sync_desktop.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/sync_desktop_inactive.png b/mobile/android/base/resources/drawable-hdpi/sync_desktop_inactive.png index c7a0502fea6..869dbf40295 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/sync_desktop_inactive.png and b/mobile/android/base/resources/drawable-hdpi/sync_desktop_inactive.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/sync_mobile.png b/mobile/android/base/resources/drawable-hdpi/sync_mobile.png index 26639fab7da..4b25152b2fd 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/sync_mobile.png and b/mobile/android/base/resources/drawable-hdpi/sync_mobile.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/sync_mobile_inactive.png b/mobile/android/base/resources/drawable-hdpi/sync_mobile_inactive.png index 1c1a5fc3dd9..e9401797db2 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/sync_mobile_inactive.png and b/mobile/android/base/resources/drawable-hdpi/sync_mobile_inactive.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/sync_promo.png b/mobile/android/base/resources/drawable-hdpi/sync_promo.png index 13fa55ec71e..ea2150508b2 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/sync_promo.png and b/mobile/android/base/resources/drawable-hdpi/sync_promo.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/tab_audio_playing.png b/mobile/android/base/resources/drawable-hdpi/tab_audio_playing.png index 183691759b0..4635cf5aef4 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/tab_audio_playing.png and b/mobile/android/base/resources/drawable-hdpi/tab_audio_playing.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/tab_close.png b/mobile/android/base/resources/drawable-hdpi/tab_close.png index bf1190a5015..9dbbcad93a8 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/tab_close.png and b/mobile/android/base/resources/drawable-hdpi/tab_close.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/tab_indicator_background.9.png b/mobile/android/base/resources/drawable-hdpi/tab_indicator_background.9.png index 0702df4bce4..e225e8ce943 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/tab_indicator_background.9.png and b/mobile/android/base/resources/drawable-hdpi/tab_indicator_background.9.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/tab_indicator_divider.9.png b/mobile/android/base/resources/drawable-hdpi/tab_indicator_divider.9.png index 0d4ce430ba7..f1338d8031c 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/tab_indicator_divider.9.png and b/mobile/android/base/resources/drawable-hdpi/tab_indicator_divider.9.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/tab_indicator_selected.9.png b/mobile/android/base/resources/drawable-hdpi/tab_indicator_selected.9.png index 388c9efb8a2..7ebd02f6f76 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/tab_indicator_selected.9.png and b/mobile/android/base/resources/drawable-hdpi/tab_indicator_selected.9.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/tab_indicator_selected_focused.9.png b/mobile/android/base/resources/drawable-hdpi/tab_indicator_selected_focused.9.png index 888afb195e1..272bbaeadec 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/tab_indicator_selected_focused.9.png and b/mobile/android/base/resources/drawable-hdpi/tab_indicator_selected_focused.9.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/tab_new.png b/mobile/android/base/resources/drawable-hdpi/tab_new.png index bd7d55de291..e6c338d3583 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/tab_new.png and b/mobile/android/base/resources/drawable-hdpi/tab_new.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/tab_new_pb.png b/mobile/android/base/resources/drawable-hdpi/tab_new_pb.png index 0821487785a..9cf91adb952 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/tab_new_pb.png and b/mobile/android/base/resources/drawable-hdpi/tab_new_pb.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/tabs_count.png b/mobile/android/base/resources/drawable-hdpi/tabs_count.png index c336982473d..c8db01a1aa8 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/tabs_count.png and b/mobile/android/base/resources/drawable-hdpi/tabs_count.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/tabs_count_foreground.png b/mobile/android/base/resources/drawable-hdpi/tabs_count_foreground.png index 6a26f8e3dae..c9b9c055b09 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/tabs_count_foreground.png and b/mobile/android/base/resources/drawable-hdpi/tabs_count_foreground.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/tabs_normal.png b/mobile/android/base/resources/drawable-hdpi/tabs_normal.png index f86a9528fc4..49b4ec8bda4 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/tabs_normal.png and b/mobile/android/base/resources/drawable-hdpi/tabs_normal.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/tabs_private.png b/mobile/android/base/resources/drawable-hdpi/tabs_private.png index 6d5591e1e55..50ff113093e 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/tabs_private.png and b/mobile/android/base/resources/drawable-hdpi/tabs_private.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/tip_addsearch.png b/mobile/android/base/resources/drawable-hdpi/tip_addsearch.png index 6c0ed67bdbe..e1139220c80 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/tip_addsearch.png and b/mobile/android/base/resources/drawable-hdpi/tip_addsearch.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/top_site_add.png b/mobile/android/base/resources/drawable-hdpi/top_site_add.png index a94bce623c5..cbfd8e4d417 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/top_site_add.png and b/mobile/android/base/resources/drawable-hdpi/top_site_add.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/undo_button_icon.png b/mobile/android/base/resources/drawable-hdpi/undo_button_icon.png index 030d5247efb..9964ccd0f88 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/undo_button_icon.png and b/mobile/android/base/resources/drawable-hdpi/undo_button_icon.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/url_bar_entry_default.9.png b/mobile/android/base/resources/drawable-hdpi/url_bar_entry_default.9.png index 4a733d0edd7..1d8cc905590 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/url_bar_entry_default.9.png and b/mobile/android/base/resources/drawable-hdpi/url_bar_entry_default.9.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/url_bar_entry_pressed.9.png b/mobile/android/base/resources/drawable-hdpi/url_bar_entry_pressed.9.png index 33faec0e291..91be77476cc 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/url_bar_entry_pressed.9.png and b/mobile/android/base/resources/drawable-hdpi/url_bar_entry_pressed.9.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/urlbar_stop.png b/mobile/android/base/resources/drawable-hdpi/urlbar_stop.png index ea6f1ab7f2b..3e8ac68fc62 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/urlbar_stop.png and b/mobile/android/base/resources/drawable-hdpi/urlbar_stop.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/validation_arrow.png b/mobile/android/base/resources/drawable-hdpi/validation_arrow.png index fddee589ba0..c0563ce942d 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/validation_arrow.png and b/mobile/android/base/resources/drawable-hdpi/validation_arrow.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/validation_arrow_inverted.png b/mobile/android/base/resources/drawable-hdpi/validation_arrow_inverted.png index ba150672a0a..165d3c2e190 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/validation_arrow_inverted.png and b/mobile/android/base/resources/drawable-hdpi/validation_arrow_inverted.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/validation_bg.9.png b/mobile/android/base/resources/drawable-hdpi/validation_bg.9.png index 0ca712979d6..bd83160e742 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/validation_bg.9.png and b/mobile/android/base/resources/drawable-hdpi/validation_bg.9.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/warning_major.png b/mobile/android/base/resources/drawable-hdpi/warning_major.png index 57d949ad00b..276d8c29b41 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/warning_major.png and b/mobile/android/base/resources/drawable-hdpi/warning_major.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/warning_minor.png b/mobile/android/base/resources/drawable-hdpi/warning_minor.png index 0a1f4867e20..5422ab37fda 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/warning_minor.png and b/mobile/android/base/resources/drawable-hdpi/warning_minor.png differ diff --git a/mobile/android/base/resources/drawable-hdpi/widget_bg.9.png b/mobile/android/base/resources/drawable-hdpi/widget_bg.9.png index 478d0dd50c1..a5df36d9970 100644 Binary files a/mobile/android/base/resources/drawable-hdpi/widget_bg.9.png and b/mobile/android/base/resources/drawable-hdpi/widget_bg.9.png differ diff --git a/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_ic_menu_back.png b/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_ic_menu_back.png index 1903e73bcd4..d18fc9cd5f0 100644 Binary files a/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_ic_menu_back.png and b/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_ic_menu_back.png differ diff --git a/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_ic_menu_forward.png b/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_ic_menu_forward.png index 6294796e2a9..22a822d678a 100644 Binary files a/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_ic_menu_forward.png and b/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_ic_menu_forward.png differ diff --git a/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_ic_menu_reload.png b/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_ic_menu_reload.png index 8c724067b38..a8eb29ef4b6 100644 Binary files a/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_ic_menu_reload.png and b/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_ic_menu_reload.png differ diff --git a/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_menu.png b/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_menu.png index eae6d51d535..bb7d8e2dbe8 100644 Binary files a/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_menu.png and b/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_menu.png differ diff --git a/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_nav_back.png b/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_nav_back.png index afacf74d65f..cc74ae4d6dc 100644 Binary files a/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_nav_back.png and b/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_nav_back.png differ diff --git a/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_tab_close.png b/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_tab_close.png index f3a1ddfb019..7aadf4c45b5 100644 Binary files a/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_tab_close.png and b/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_tab_close.png differ diff --git a/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_tab_close_active.png b/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_tab_close_active.png index 260378bc960..39752bb9165 100644 Binary files a/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_tab_close_active.png and b/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_tab_close_active.png differ diff --git a/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_tab_new_dark.png b/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_tab_new_dark.png index 533db4713db..3033f6d397e 100644 Binary files a/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_tab_new_dark.png and b/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_tab_new_dark.png differ diff --git a/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_tabs_count.png b/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_tabs_count.png index a2fc329693b..7db22b0ca16 100644 Binary files a/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_tabs_count.png and b/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_tabs_count.png differ diff --git a/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_tabs_count_foreground.png b/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_tabs_count_foreground.png index 417ec959182..3875c80cc7b 100644 Binary files a/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_tabs_count_foreground.png and b/mobile/android/base/resources/drawable-large-hdpi-v11/new_tablet_tabs_count_foreground.png differ diff --git a/mobile/android/base/resources/drawable-large-hdpi-v11/toolbar_favicon_default.png b/mobile/android/base/resources/drawable-large-hdpi-v11/toolbar_favicon_default.png index fb483f40b1c..9daea10b72e 100644 Binary files a/mobile/android/base/resources/drawable-large-hdpi-v11/toolbar_favicon_default.png and b/mobile/android/base/resources/drawable-large-hdpi-v11/toolbar_favicon_default.png differ diff --git a/mobile/android/base/resources/drawable-large-hdpi-v11/url_bar_entry_default.9.png b/mobile/android/base/resources/drawable-large-hdpi-v11/url_bar_entry_default.9.png index 848ef636e1a..a2e973ea0c0 100644 Binary files a/mobile/android/base/resources/drawable-large-hdpi-v11/url_bar_entry_default.9.png and b/mobile/android/base/resources/drawable-large-hdpi-v11/url_bar_entry_default.9.png differ diff --git a/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_ic_menu_back.png b/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_ic_menu_back.png index 6e94d969c63..78a33ffab48 100644 Binary files a/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_ic_menu_back.png and b/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_ic_menu_back.png differ diff --git a/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_ic_menu_forward.png b/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_ic_menu_forward.png index 28d390d1c3d..7a284903f3d 100644 Binary files a/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_ic_menu_forward.png and b/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_ic_menu_forward.png differ diff --git a/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_ic_menu_reload.png b/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_ic_menu_reload.png index 1f22612cef7..3a9fd8df013 100644 Binary files a/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_ic_menu_reload.png and b/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_ic_menu_reload.png differ diff --git a/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_menu.png b/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_menu.png index a788766c8b1..7598da1a70c 100644 Binary files a/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_menu.png and b/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_menu.png differ diff --git a/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_nav_back.png b/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_nav_back.png index 9f622b48fe2..79d8ae28552 100644 Binary files a/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_nav_back.png and b/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_nav_back.png differ diff --git a/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_tab_close.png b/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_tab_close.png index 6dcb35f9b75..8e4908e0c58 100644 Binary files a/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_tab_close.png and b/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_tab_close.png differ diff --git a/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_tab_close_active.png b/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_tab_close_active.png index b9d65312f6c..d2071e7c377 100644 Binary files a/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_tab_close_active.png and b/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_tab_close_active.png differ diff --git a/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_tab_new_dark.png b/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_tab_new_dark.png index 887f458c899..bf5ec993d3a 100644 Binary files a/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_tab_new_dark.png and b/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_tab_new_dark.png differ diff --git a/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_tabs_count.png b/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_tabs_count.png index 4fe07ed28a4..16e41c0cef6 100644 Binary files a/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_tabs_count.png and b/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_tabs_count.png differ diff --git a/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_tabs_count_foreground.png b/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_tabs_count_foreground.png index db7e7872bb1..85dc05e4a62 100644 Binary files a/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_tabs_count_foreground.png and b/mobile/android/base/resources/drawable-large-xhdpi-v11/new_tablet_tabs_count_foreground.png differ diff --git a/mobile/android/base/resources/drawable-large-xhdpi-v11/toolbar_favicon_default.png b/mobile/android/base/resources/drawable-large-xhdpi-v11/toolbar_favicon_default.png index cfdf745588a..1fb9f7386e9 100644 Binary files a/mobile/android/base/resources/drawable-large-xhdpi-v11/toolbar_favicon_default.png and b/mobile/android/base/resources/drawable-large-xhdpi-v11/toolbar_favicon_default.png differ diff --git a/mobile/android/base/resources/drawable-large-xhdpi-v11/url_bar_entry_default.9.png b/mobile/android/base/resources/drawable-large-xhdpi-v11/url_bar_entry_default.9.png index e2920cc5398..2c8c0d80f8c 100644 Binary files a/mobile/android/base/resources/drawable-large-xhdpi-v11/url_bar_entry_default.9.png and b/mobile/android/base/resources/drawable-large-xhdpi-v11/url_bar_entry_default.9.png differ diff --git a/mobile/android/base/resources/drawable-large-xhdpi-v11/url_bar_entry_pressed.9.png b/mobile/android/base/resources/drawable-large-xhdpi-v11/url_bar_entry_pressed.9.png index 498912d50bf..26dc0221b55 100644 Binary files a/mobile/android/base/resources/drawable-large-xhdpi-v11/url_bar_entry_pressed.9.png and b/mobile/android/base/resources/drawable-large-xhdpi-v11/url_bar_entry_pressed.9.png differ diff --git a/mobile/android/base/resources/drawable-large-xxhdpi-v11/new_tablet_ic_menu_back.png b/mobile/android/base/resources/drawable-large-xxhdpi-v11/new_tablet_ic_menu_back.png index 7941c7dbc42..33b45b31d0a 100644 Binary files a/mobile/android/base/resources/drawable-large-xxhdpi-v11/new_tablet_ic_menu_back.png and b/mobile/android/base/resources/drawable-large-xxhdpi-v11/new_tablet_ic_menu_back.png differ diff --git a/mobile/android/base/resources/drawable-large-xxhdpi-v11/new_tablet_ic_menu_forward.png b/mobile/android/base/resources/drawable-large-xxhdpi-v11/new_tablet_ic_menu_forward.png index 54beae24db8..ac5166cd826 100644 Binary files a/mobile/android/base/resources/drawable-large-xxhdpi-v11/new_tablet_ic_menu_forward.png and b/mobile/android/base/resources/drawable-large-xxhdpi-v11/new_tablet_ic_menu_forward.png differ diff --git a/mobile/android/base/resources/drawable-large-xxhdpi-v11/new_tablet_ic_menu_reload.png b/mobile/android/base/resources/drawable-large-xxhdpi-v11/new_tablet_ic_menu_reload.png index 2eb454333e8..adac63d7137 100644 Binary files a/mobile/android/base/resources/drawable-large-xxhdpi-v11/new_tablet_ic_menu_reload.png and b/mobile/android/base/resources/drawable-large-xxhdpi-v11/new_tablet_ic_menu_reload.png differ diff --git a/mobile/android/base/resources/drawable-large-xxhdpi-v11/new_tablet_menu.png b/mobile/android/base/resources/drawable-large-xxhdpi-v11/new_tablet_menu.png index cf1dba45389..94fa25f9fa0 100644 Binary files a/mobile/android/base/resources/drawable-large-xxhdpi-v11/new_tablet_menu.png and b/mobile/android/base/resources/drawable-large-xxhdpi-v11/new_tablet_menu.png differ diff --git a/mobile/android/base/resources/drawable-large-xxhdpi-v11/new_tablet_nav_back.png b/mobile/android/base/resources/drawable-large-xxhdpi-v11/new_tablet_nav_back.png index e78427d65ca..3b21f3aa2a2 100644 Binary files a/mobile/android/base/resources/drawable-large-xxhdpi-v11/new_tablet_nav_back.png and b/mobile/android/base/resources/drawable-large-xxhdpi-v11/new_tablet_nav_back.png differ diff --git a/mobile/android/base/resources/drawable-large-xxhdpi-v11/new_tablet_tab_close.png b/mobile/android/base/resources/drawable-large-xxhdpi-v11/new_tablet_tab_close.png index 0370e29cc2f..400319394dc 100644 Binary files a/mobile/android/base/resources/drawable-large-xxhdpi-v11/new_tablet_tab_close.png and b/mobile/android/base/resources/drawable-large-xxhdpi-v11/new_tablet_tab_close.png differ diff --git a/mobile/android/base/resources/drawable-large-xxhdpi-v11/new_tablet_tab_close_active.png b/mobile/android/base/resources/drawable-large-xxhdpi-v11/new_tablet_tab_close_active.png index cc35204c3bc..279135f9391 100644 Binary files a/mobile/android/base/resources/drawable-large-xxhdpi-v11/new_tablet_tab_close_active.png and b/mobile/android/base/resources/drawable-large-xxhdpi-v11/new_tablet_tab_close_active.png differ diff --git a/mobile/android/base/resources/drawable-large-xxhdpi-v11/new_tablet_tabs_count_foreground.png b/mobile/android/base/resources/drawable-large-xxhdpi-v11/new_tablet_tabs_count_foreground.png index 1ca9fe510a3..fa051203520 100644 Binary files a/mobile/android/base/resources/drawable-large-xxhdpi-v11/new_tablet_tabs_count_foreground.png and b/mobile/android/base/resources/drawable-large-xxhdpi-v11/new_tablet_tabs_count_foreground.png differ diff --git a/mobile/android/base/resources/drawable-large-xxhdpi-v11/toolbar_favicon_default.png b/mobile/android/base/resources/drawable-large-xxhdpi-v11/toolbar_favicon_default.png index 70a1443b7b9..bbccd51ef4d 100644 Binary files a/mobile/android/base/resources/drawable-large-xxhdpi-v11/toolbar_favicon_default.png and b/mobile/android/base/resources/drawable-large-xxhdpi-v11/toolbar_favicon_default.png differ diff --git a/mobile/android/base/resources/drawable-large-xxhdpi-v11/url_bar_entry_default.9.png b/mobile/android/base/resources/drawable-large-xxhdpi-v11/url_bar_entry_default.9.png index 98ec68ba528..1099a2d8076 100644 Binary files a/mobile/android/base/resources/drawable-large-xxhdpi-v11/url_bar_entry_default.9.png and b/mobile/android/base/resources/drawable-large-xxhdpi-v11/url_bar_entry_default.9.png differ diff --git a/mobile/android/base/resources/drawable-large-xxhdpi-v11/url_bar_entry_pressed.9.png b/mobile/android/base/resources/drawable-large-xxhdpi-v11/url_bar_entry_pressed.9.png index 8bf9962ed7f..779f2721f54 100644 Binary files a/mobile/android/base/resources/drawable-large-xxhdpi-v11/url_bar_entry_pressed.9.png and b/mobile/android/base/resources/drawable-large-xxhdpi-v11/url_bar_entry_pressed.9.png differ diff --git a/mobile/android/base/resources/drawable-large-xxhdpi-v11/url_bar_entry_pressed_pb.9.png b/mobile/android/base/resources/drawable-large-xxhdpi-v11/url_bar_entry_pressed_pb.9.png index e15f58ab260..be1b1ad1cd8 100644 Binary files a/mobile/android/base/resources/drawable-large-xxhdpi-v11/url_bar_entry_pressed_pb.9.png and b/mobile/android/base/resources/drawable-large-xxhdpi-v11/url_bar_entry_pressed_pb.9.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi-v11/alert_addon.png b/mobile/android/base/resources/drawable-xhdpi-v11/alert_addon.png index 9941bb41be6..8fe4074d7ed 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi-v11/alert_addon.png and b/mobile/android/base/resources/drawable-xhdpi-v11/alert_addon.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi-v11/alert_app.png b/mobile/android/base/resources/drawable-xhdpi-v11/alert_app.png index e2079c6d6ec..260bcd20592 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi-v11/alert_app.png and b/mobile/android/base/resources/drawable-xhdpi-v11/alert_app.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi-v11/alert_camera.png b/mobile/android/base/resources/drawable-xhdpi-v11/alert_camera.png index d3f14f45af2..ead824430f0 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi-v11/alert_camera.png and b/mobile/android/base/resources/drawable-xhdpi-v11/alert_camera.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi-v11/alert_download.png b/mobile/android/base/resources/drawable-xhdpi-v11/alert_download.png index 26cc6ee37dd..1b8f59e567b 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi-v11/alert_download.png and b/mobile/android/base/resources/drawable-xhdpi-v11/alert_download.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi-v11/alert_guest.png b/mobile/android/base/resources/drawable-xhdpi-v11/alert_guest.png index aa6f4718b3e..1a17f03bebb 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi-v11/alert_guest.png and b/mobile/android/base/resources/drawable-xhdpi-v11/alert_guest.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi-v11/alert_mic.png b/mobile/android/base/resources/drawable-xhdpi-v11/alert_mic.png index 23ecdb8061a..79489919e76 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi-v11/alert_mic.png and b/mobile/android/base/resources/drawable-xhdpi-v11/alert_mic.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi-v11/alert_mic_camera.png b/mobile/android/base/resources/drawable-xhdpi-v11/alert_mic_camera.png index 96747051756..26ba6520b91 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi-v11/alert_mic_camera.png and b/mobile/android/base/resources/drawable-xhdpi-v11/alert_mic_camera.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_addons.png b/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_addons.png index de28a82ede5..25e3327f0b1 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_addons.png and b/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_addons.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_bookmark_add.png b/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_bookmark_add.png index 6e86a4d9b31..eea398275cc 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_bookmark_add.png and b/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_bookmark_add.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_bookmark_remove.png b/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_bookmark_remove.png index 09f14762f47..12b161c8f88 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_bookmark_remove.png and b/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_bookmark_remove.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_desktop_mode_off.png b/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_desktop_mode_off.png index 0328df48705..8e9373f09da 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_desktop_mode_off.png and b/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_desktop_mode_off.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_desktop_mode_on.png b/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_desktop_mode_on.png index 1a5545b2377..4ab3760b678 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_desktop_mode_on.png and b/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_desktop_mode_on.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_downloads.png b/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_downloads.png index a221fabd08a..85b56d42c22 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_downloads.png and b/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_downloads.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_find_in_page.png b/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_find_in_page.png index 853a65fa4f9..773c4fec19d 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_find_in_page.png and b/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_find_in_page.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_forward.png b/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_forward.png index 2ec5e7f511d..2d6ba52ac79 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_forward.png and b/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_forward.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_new_private_tab.png b/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_new_private_tab.png index ef2fff21016..cc295d0ae75 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_new_private_tab.png and b/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_new_private_tab.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_new_tab.png b/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_new_tab.png index d790aa5e73b..01aab020789 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_new_tab.png and b/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_new_tab.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_quit.png b/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_quit.png index 59c5058cf1f..67d101dc5a8 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_quit.png and b/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_quit.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_reader_add.png b/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_reader_add.png index e62a17b5209..6f41f850a03 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_reader_add.png and b/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_reader_add.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_reload.png b/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_reload.png index b04af761bec..d456630ee90 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_reload.png and b/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_reload.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_settings.png b/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_settings.png index 44c190c5214..bedb14a8d86 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_settings.png and b/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_settings.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_tools.png b/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_tools.png index e7d4d13c101..58ef5c77b57 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_tools.png and b/mobile/android/base/resources/drawable-xhdpi-v11/ic_menu_tools.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi-v11/ic_status_logo.png b/mobile/android/base/resources/drawable-xhdpi-v11/ic_status_logo.png index 2d905bc868c..c9045fd0ea2 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi-v11/ic_status_logo.png and b/mobile/android/base/resources/drawable-xhdpi-v11/ic_status_logo.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/ab_add_search_engine.png b/mobile/android/base/resources/drawable-xhdpi/ab_add_search_engine.png index 5c5436bbe79..2ba5dc0b749 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/ab_add_search_engine.png and b/mobile/android/base/resources/drawable-xhdpi/ab_add_search_engine.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/ab_background.9.png b/mobile/android/base/resources/drawable-xhdpi/ab_background.9.png index f83aa685246..7a3387ae0b4 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/ab_background.9.png and b/mobile/android/base/resources/drawable-xhdpi/ab_background.9.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/ab_copy.png b/mobile/android/base/resources/drawable-xhdpi/ab_copy.png index 6c468ddbf8a..131b4bb1b71 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/ab_copy.png and b/mobile/android/base/resources/drawable-xhdpi/ab_copy.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/ab_cut.png b/mobile/android/base/resources/drawable-xhdpi/ab_cut.png index d72ab719443..0805bbbefe9 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/ab_cut.png and b/mobile/android/base/resources/drawable-xhdpi/ab_cut.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/ab_done.png b/mobile/android/base/resources/drawable-xhdpi/ab_done.png index 3b77583ef49..0639b034eb9 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/ab_done.png and b/mobile/android/base/resources/drawable-xhdpi/ab_done.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/ab_mic.png b/mobile/android/base/resources/drawable-xhdpi/ab_mic.png index 00fd917dbfa..79c459bdbcb 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/ab_mic.png and b/mobile/android/base/resources/drawable-xhdpi/ab_mic.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/ab_paste.png b/mobile/android/base/resources/drawable-xhdpi/ab_paste.png index 1769879106d..744320f16ad 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/ab_paste.png and b/mobile/android/base/resources/drawable-xhdpi/ab_paste.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/ab_search.png b/mobile/android/base/resources/drawable-xhdpi/ab_search.png index 9e3f562ca95..67063dd6c7e 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/ab_search.png and b/mobile/android/base/resources/drawable-xhdpi/ab_search.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/ab_select_all.png b/mobile/android/base/resources/drawable-xhdpi/ab_select_all.png index 01cbfa97678..028299a83fe 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/ab_select_all.png and b/mobile/android/base/resources/drawable-xhdpi/ab_select_all.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/alert_addon.png b/mobile/android/base/resources/drawable-xhdpi/alert_addon.png index 0a82e708100..0d27496f14a 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/alert_addon.png and b/mobile/android/base/resources/drawable-xhdpi/alert_addon.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/alert_app.png b/mobile/android/base/resources/drawable-xhdpi/alert_app.png index d2a2732329c..8e41ad31f58 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/alert_app.png and b/mobile/android/base/resources/drawable-xhdpi/alert_app.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/alert_app_animation_1.png b/mobile/android/base/resources/drawable-xhdpi/alert_app_animation_1.png index a4d50bc46c4..8e41ad31f58 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/alert_app_animation_1.png and b/mobile/android/base/resources/drawable-xhdpi/alert_app_animation_1.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/alert_app_animation_2.png b/mobile/android/base/resources/drawable-xhdpi/alert_app_animation_2.png index 865875257f0..2d92a2d9ef5 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/alert_app_animation_2.png and b/mobile/android/base/resources/drawable-xhdpi/alert_app_animation_2.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/alert_app_animation_3.png b/mobile/android/base/resources/drawable-xhdpi/alert_app_animation_3.png index 202f6370f0f..fa66a780b56 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/alert_app_animation_3.png and b/mobile/android/base/resources/drawable-xhdpi/alert_app_animation_3.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/alert_app_animation_4.png b/mobile/android/base/resources/drawable-xhdpi/alert_app_animation_4.png index 75c4d3091fa..53b9fad8570 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/alert_app_animation_4.png and b/mobile/android/base/resources/drawable-xhdpi/alert_app_animation_4.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/alert_app_animation_5.png b/mobile/android/base/resources/drawable-xhdpi/alert_app_animation_5.png index 575aa9def24..2742d40082c 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/alert_app_animation_5.png and b/mobile/android/base/resources/drawable-xhdpi/alert_app_animation_5.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/alert_app_animation_6.png b/mobile/android/base/resources/drawable-xhdpi/alert_app_animation_6.png index c2021eb2960..ce8b92232c4 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/alert_app_animation_6.png and b/mobile/android/base/resources/drawable-xhdpi/alert_app_animation_6.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/alert_app_animation_7.png b/mobile/android/base/resources/drawable-xhdpi/alert_app_animation_7.png index 42551c6a37d..50fbf4995a9 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/alert_app_animation_7.png and b/mobile/android/base/resources/drawable-xhdpi/alert_app_animation_7.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/alert_camera.png b/mobile/android/base/resources/drawable-xhdpi/alert_camera.png index 7ba0d75505c..bfc736c5522 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/alert_camera.png and b/mobile/android/base/resources/drawable-xhdpi/alert_camera.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/alert_download.png b/mobile/android/base/resources/drawable-xhdpi/alert_download.png index 65211981d0f..283ba086731 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/alert_download.png and b/mobile/android/base/resources/drawable-xhdpi/alert_download.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/alert_download_animation_1.png b/mobile/android/base/resources/drawable-xhdpi/alert_download_animation_1.png index 2e9767de8b6..283ba086731 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/alert_download_animation_1.png and b/mobile/android/base/resources/drawable-xhdpi/alert_download_animation_1.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/alert_download_animation_2.png b/mobile/android/base/resources/drawable-xhdpi/alert_download_animation_2.png index 8c8743e3a8f..1a0e5f7c663 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/alert_download_animation_2.png and b/mobile/android/base/resources/drawable-xhdpi/alert_download_animation_2.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/alert_download_animation_3.png b/mobile/android/base/resources/drawable-xhdpi/alert_download_animation_3.png index 4f9aadab299..641fd18ecec 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/alert_download_animation_3.png and b/mobile/android/base/resources/drawable-xhdpi/alert_download_animation_3.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/alert_download_animation_4.png b/mobile/android/base/resources/drawable-xhdpi/alert_download_animation_4.png index 7449b954616..7c4312b69ab 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/alert_download_animation_4.png and b/mobile/android/base/resources/drawable-xhdpi/alert_download_animation_4.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/alert_download_animation_5.png b/mobile/android/base/resources/drawable-xhdpi/alert_download_animation_5.png index e2a5e30beac..115a41c8713 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/alert_download_animation_5.png and b/mobile/android/base/resources/drawable-xhdpi/alert_download_animation_5.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/alert_download_animation_6.png b/mobile/android/base/resources/drawable-xhdpi/alert_download_animation_6.png index 628e4f59a4f..ae5f4d7b652 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/alert_download_animation_6.png and b/mobile/android/base/resources/drawable-xhdpi/alert_download_animation_6.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/alert_guest.png b/mobile/android/base/resources/drawable-xhdpi/alert_guest.png index 361843a5caf..32ef6e79695 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/alert_guest.png and b/mobile/android/base/resources/drawable-xhdpi/alert_guest.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/alert_mic.png b/mobile/android/base/resources/drawable-xhdpi/alert_mic.png index 70afb585a4d..527d42c4255 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/alert_mic.png and b/mobile/android/base/resources/drawable-xhdpi/alert_mic.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/alert_mic_camera.png b/mobile/android/base/resources/drawable-xhdpi/alert_mic_camera.png index 3c22380574f..1e2c29861e7 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/alert_mic_camera.png and b/mobile/android/base/resources/drawable-xhdpi/alert_mic_camera.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/blank.png b/mobile/android/base/resources/drawable-xhdpi/blank.png index 269f4c7a431..c6efe7e8ef1 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/blank.png and b/mobile/android/base/resources/drawable-xhdpi/blank.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/casting.png b/mobile/android/base/resources/drawable-xhdpi/casting.png index 446c07b54da..a2084023492 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/casting.png and b/mobile/android/base/resources/drawable-xhdpi/casting.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/casting_active.png b/mobile/android/base/resources/drawable-xhdpi/casting_active.png index 11881bee959..0f5d93c7304 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/casting_active.png and b/mobile/android/base/resources/drawable-xhdpi/casting_active.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/close_edit_mode_dark.png b/mobile/android/base/resources/drawable-xhdpi/close_edit_mode_dark.png index 93ddd5edd1d..93bee42dafc 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/close_edit_mode_dark.png and b/mobile/android/base/resources/drawable-xhdpi/close_edit_mode_dark.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/close_edit_mode_light.png b/mobile/android/base/resources/drawable-xhdpi/close_edit_mode_light.png index 969a1676776..11e9d19ce31 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/close_edit_mode_light.png and b/mobile/android/base/resources/drawable-xhdpi/close_edit_mode_light.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/color_picker_row_bg.9.png b/mobile/android/base/resources/drawable-xhdpi/color_picker_row_bg.9.png index 5a5a9dc3aff..106c4c0b749 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/color_picker_row_bg.9.png and b/mobile/android/base/resources/drawable-xhdpi/color_picker_row_bg.9.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/device_desktop.png b/mobile/android/base/resources/drawable-xhdpi/device_desktop.png index fde7abc31cf..5b0abd02d44 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/device_desktop.png and b/mobile/android/base/resources/drawable-xhdpi/device_desktop.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/device_mobile.png b/mobile/android/base/resources/drawable-xhdpi/device_mobile.png index 269d4d5dc15..ee665d2b6c0 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/device_mobile.png and b/mobile/android/base/resources/drawable-xhdpi/device_mobile.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/dropshadow.9.png b/mobile/android/base/resources/drawable-xhdpi/dropshadow.9.png index baa3d89c0e7..5f346ab705b 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/dropshadow.9.png and b/mobile/android/base/resources/drawable-xhdpi/dropshadow.9.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/favicon_globe.png b/mobile/android/base/resources/drawable-xhdpi/favicon_globe.png index fa7f676310d..e4d5949117c 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/favicon_globe.png and b/mobile/android/base/resources/drawable-xhdpi/favicon_globe.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/find_close.png b/mobile/android/base/resources/drawable-xhdpi/find_close.png index 81137afce7e..a76c69e0975 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/find_close.png and b/mobile/android/base/resources/drawable-xhdpi/find_close.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/find_next.png b/mobile/android/base/resources/drawable-xhdpi/find_next.png index ed7a162c1d4..3a7dda2d957 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/find_next.png and b/mobile/android/base/resources/drawable-xhdpi/find_next.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/find_prev.png b/mobile/android/base/resources/drawable-xhdpi/find_prev.png index eac6dbfea29..9e3c8f2da28 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/find_prev.png and b/mobile/android/base/resources/drawable-xhdpi/find_prev.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/firefox_settings_alert.png b/mobile/android/base/resources/drawable-xhdpi/firefox_settings_alert.png index c3addce0d44..b62d67c8870 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/firefox_settings_alert.png and b/mobile/android/base/resources/drawable-xhdpi/firefox_settings_alert.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/flat_icon.png b/mobile/android/base/resources/drawable-xhdpi/flat_icon.png index 6793178d4e9..bc9569f4712 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/flat_icon.png and b/mobile/android/base/resources/drawable-xhdpi/flat_icon.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/folder_up.png b/mobile/android/base/resources/drawable-xhdpi/folder_up.png index fa1e5f986e5..5022437df1c 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/folder_up.png and b/mobile/android/base/resources/drawable-xhdpi/folder_up.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/fxaccount_intro.png b/mobile/android/base/resources/drawable-xhdpi/fxaccount_intro.png index 6563d716b96..5385d6b6fd0 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/fxaccount_intro.png and b/mobile/android/base/resources/drawable-xhdpi/fxaccount_intro.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/globe_light.png b/mobile/android/base/resources/drawable-xhdpi/globe_light.png index 5ded11651fa..9f64b086abf 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/globe_light.png and b/mobile/android/base/resources/drawable-xhdpi/globe_light.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/grid_icon_bg_activated.9.png b/mobile/android/base/resources/drawable-xhdpi/grid_icon_bg_activated.9.png index a61c549e636..ef25e207659 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/grid_icon_bg_activated.9.png and b/mobile/android/base/resources/drawable-xhdpi/grid_icon_bg_activated.9.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/grid_icon_bg_focused.9.png b/mobile/android/base/resources/drawable-xhdpi/grid_icon_bg_focused.9.png index fddbcec1aca..27660f0d3d2 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/grid_icon_bg_focused.9.png and b/mobile/android/base/resources/drawable-xhdpi/grid_icon_bg_focused.9.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/handle_end.png b/mobile/android/base/resources/drawable-xhdpi/handle_end.png index 978d421dcd3..88e676b0a5b 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/handle_end.png and b/mobile/android/base/resources/drawable-xhdpi/handle_end.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/handle_middle.png b/mobile/android/base/resources/drawable-xhdpi/handle_middle.png index f53e53ef756..a320624923b 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/handle_middle.png and b/mobile/android/base/resources/drawable-xhdpi/handle_middle.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/handle_start.png b/mobile/android/base/resources/drawable-xhdpi/handle_start.png index 3e53f49cc5c..1fae29a023e 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/handle_start.png and b/mobile/android/base/resources/drawable-xhdpi/handle_start.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/home_group_collapsed.png b/mobile/android/base/resources/drawable-xhdpi/home_group_collapsed.png index acd90bc8227..80aea0ddcf3 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/home_group_collapsed.png and b/mobile/android/base/resources/drawable-xhdpi/home_group_collapsed.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/home_group_expanded.png b/mobile/android/base/resources/drawable-xhdpi/home_group_expanded.png index 5152c11a56a..4326616aa81 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/home_group_expanded.png and b/mobile/android/base/resources/drawable-xhdpi/home_group_expanded.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/home_tab_menu_strip.9.png b/mobile/android/base/resources/drawable-xhdpi/home_tab_menu_strip.9.png index e639d05dfb7..b9847a1a3f9 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/home_tab_menu_strip.9.png and b/mobile/android/base/resources/drawable-xhdpi/home_tab_menu_strip.9.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/homepage_banner_firstrun.png b/mobile/android/base/resources/drawable-xhdpi/homepage_banner_firstrun.png index 01b38155974..b53bcb94415 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/homepage_banner_firstrun.png and b/mobile/android/base/resources/drawable-xhdpi/homepage_banner_firstrun.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/ic_action_settings.png b/mobile/android/base/resources/drawable-xhdpi/ic_action_settings.png index 910fd4f1413..c76a98b640b 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/ic_action_settings.png and b/mobile/android/base/resources/drawable-xhdpi/ic_action_settings.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/ic_menu_addons_filler.png b/mobile/android/base/resources/drawable-xhdpi/ic_menu_addons_filler.png index d5a0db9a8b1..e0f8fddba0d 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/ic_menu_addons_filler.png and b/mobile/android/base/resources/drawable-xhdpi/ic_menu_addons_filler.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/ic_menu_back.png b/mobile/android/base/resources/drawable-xhdpi/ic_menu_back.png index 19eca15b589..c26cdd7534c 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/ic_menu_back.png and b/mobile/android/base/resources/drawable-xhdpi/ic_menu_back.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/ic_menu_bookmark_add.png b/mobile/android/base/resources/drawable-xhdpi/ic_menu_bookmark_add.png index 35bd91265be..042dee80327 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/ic_menu_bookmark_add.png and b/mobile/android/base/resources/drawable-xhdpi/ic_menu_bookmark_add.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/ic_menu_bookmark_remove.png b/mobile/android/base/resources/drawable-xhdpi/ic_menu_bookmark_remove.png index c925e8d8b9a..9dc3f0692e9 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/ic_menu_bookmark_remove.png and b/mobile/android/base/resources/drawable-xhdpi/ic_menu_bookmark_remove.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/ic_menu_character_encoding.png b/mobile/android/base/resources/drawable-xhdpi/ic_menu_character_encoding.png index fd75ceec614..f31dd2c424c 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/ic_menu_character_encoding.png and b/mobile/android/base/resources/drawable-xhdpi/ic_menu_character_encoding.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/ic_menu_forward.png b/mobile/android/base/resources/drawable-xhdpi/ic_menu_forward.png index 9e62525f60b..51fea1bc492 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/ic_menu_forward.png and b/mobile/android/base/resources/drawable-xhdpi/ic_menu_forward.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/ic_menu_guest.png b/mobile/android/base/resources/drawable-xhdpi/ic_menu_guest.png index 330986a5e5b..483ad3cf069 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/ic_menu_guest.png and b/mobile/android/base/resources/drawable-xhdpi/ic_menu_guest.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/ic_menu_new_private_tab.png b/mobile/android/base/resources/drawable-xhdpi/ic_menu_new_private_tab.png index e85a8bc4d02..0ca97ab7ed5 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/ic_menu_new_private_tab.png and b/mobile/android/base/resources/drawable-xhdpi/ic_menu_new_private_tab.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/ic_menu_new_tab.png b/mobile/android/base/resources/drawable-xhdpi/ic_menu_new_tab.png index a0cf7df3d5a..3b2622ec767 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/ic_menu_new_tab.png and b/mobile/android/base/resources/drawable-xhdpi/ic_menu_new_tab.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/ic_menu_reload.png b/mobile/android/base/resources/drawable-xhdpi/ic_menu_reload.png index d9e8d149ed4..712916f45d0 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/ic_menu_reload.png and b/mobile/android/base/resources/drawable-xhdpi/ic_menu_reload.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/ic_menu_share.png b/mobile/android/base/resources/drawable-xhdpi/ic_menu_share.png index 1b414d14b7c..31cca8e1574 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/ic_menu_share.png and b/mobile/android/base/resources/drawable-xhdpi/ic_menu_share.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/ic_status_logo.png b/mobile/android/base/resources/drawable-xhdpi/ic_status_logo.png index db293110297..915d7510a40 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/ic_status_logo.png and b/mobile/android/base/resources/drawable-xhdpi/ic_status_logo.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/ic_url_bar_star.png b/mobile/android/base/resources/drawable-xhdpi/ic_url_bar_star.png index 43b89f04aed..5f6f96db027 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/ic_url_bar_star.png and b/mobile/android/base/resources/drawable-xhdpi/ic_url_bar_star.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/ic_url_bar_tab.png b/mobile/android/base/resources/drawable-xhdpi/ic_url_bar_tab.png index eb45a5c5f96..be2b74138c5 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/ic_url_bar_tab.png and b/mobile/android/base/resources/drawable-xhdpi/ic_url_bar_tab.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/ic_widget_new_tab.png b/mobile/android/base/resources/drawable-xhdpi/ic_widget_new_tab.png index ab8bcb4c563..8a5cbae011a 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/ic_widget_new_tab.png and b/mobile/android/base/resources/drawable-xhdpi/ic_widget_new_tab.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/ic_widget_search.png b/mobile/android/base/resources/drawable-xhdpi/ic_widget_search.png index 27744109096..e846f008d50 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/ic_widget_search.png and b/mobile/android/base/resources/drawable-xhdpi/ic_widget_search.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/icon_home_empty_firefox.png b/mobile/android/base/resources/drawable-xhdpi/icon_home_empty_firefox.png index cdd55905dad..92b96607146 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/icon_home_empty_firefox.png and b/mobile/android/base/resources/drawable-xhdpi/icon_home_empty_firefox.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/icon_key.png b/mobile/android/base/resources/drawable-xhdpi/icon_key.png index d10c18149df..747733125e1 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/icon_key.png and b/mobile/android/base/resources/drawable-xhdpi/icon_key.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/icon_most_recent_empty.png b/mobile/android/base/resources/drawable-xhdpi/icon_most_recent_empty.png index 727f92aa31d..710fded09ee 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/icon_most_recent_empty.png and b/mobile/android/base/resources/drawable-xhdpi/icon_most_recent_empty.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/icon_openinapp.png b/mobile/android/base/resources/drawable-xhdpi/icon_openinapp.png index 3f99ba7d9c3..4caa44ea885 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/icon_openinapp.png and b/mobile/android/base/resources/drawable-xhdpi/icon_openinapp.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/icon_pageaction.png b/mobile/android/base/resources/drawable-xhdpi/icon_pageaction.png index 177a64136b5..2dd6b052b53 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/icon_pageaction.png and b/mobile/android/base/resources/drawable-xhdpi/icon_pageaction.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/icon_remote_tabs_empty.png b/mobile/android/base/resources/drawable-xhdpi/icon_remote_tabs_empty.png index d7e833606b6..04c0f0d7389 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/icon_remote_tabs_empty.png and b/mobile/android/base/resources/drawable-xhdpi/icon_remote_tabs_empty.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/icon_search_empty_firefox.png b/mobile/android/base/resources/drawable-xhdpi/icon_search_empty_firefox.png index f81f293d5fa..8332271d8e1 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/icon_search_empty_firefox.png and b/mobile/android/base/resources/drawable-xhdpi/icon_search_empty_firefox.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/icon_shareplane.png b/mobile/android/base/resources/drawable-xhdpi/icon_shareplane.png index dd621ce5a7a..f2dfe2d5ab4 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/icon_shareplane.png and b/mobile/android/base/resources/drawable-xhdpi/icon_shareplane.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/img_check.png b/mobile/android/base/resources/drawable-xhdpi/img_check.png index f34adda6bbd..986143b2431 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/img_check.png and b/mobile/android/base/resources/drawable-xhdpi/img_check.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/location.png b/mobile/android/base/resources/drawable-xhdpi/location.png index 08b55a64345..cfec24c505c 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/location.png and b/mobile/android/base/resources/drawable-xhdpi/location.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/lock_disabled.png b/mobile/android/base/resources/drawable-xhdpi/lock_disabled.png index fca4d9d603a..69da61c6182 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/lock_disabled.png and b/mobile/android/base/resources/drawable-xhdpi/lock_disabled.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/lock_inactive.png b/mobile/android/base/resources/drawable-xhdpi/lock_inactive.png index 5f52e8a8b7a..aa68c19eadd 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/lock_inactive.png and b/mobile/android/base/resources/drawable-xhdpi/lock_inactive.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/lock_secure.png b/mobile/android/base/resources/drawable-xhdpi/lock_secure.png index b997784b069..0088f8c06b1 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/lock_secure.png and b/mobile/android/base/resources/drawable-xhdpi/lock_secure.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/media_bar_pause.png b/mobile/android/base/resources/drawable-xhdpi/media_bar_pause.png index d199673e42a..e19fbd864db 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/media_bar_pause.png and b/mobile/android/base/resources/drawable-xhdpi/media_bar_pause.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/media_bar_play.png b/mobile/android/base/resources/drawable-xhdpi/media_bar_play.png index 4a2fe0c16d1..6e1b7d2141f 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/media_bar_play.png and b/mobile/android/base/resources/drawable-xhdpi/media_bar_play.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/media_bar_stop.png b/mobile/android/base/resources/drawable-xhdpi/media_bar_stop.png index f847d375630..6b63c3ea30d 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/media_bar_stop.png and b/mobile/android/base/resources/drawable-xhdpi/media_bar_stop.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/menu.png b/mobile/android/base/resources/drawable-xhdpi/menu.png index e6b549401c1..05532737182 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/menu.png and b/mobile/android/base/resources/drawable-xhdpi/menu.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/menu_item_check.png b/mobile/android/base/resources/drawable-xhdpi/menu_item_check.png index 06aa0f5b155..0f8be7be674 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/menu_item_check.png and b/mobile/android/base/resources/drawable-xhdpi/menu_item_check.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/menu_item_more.png b/mobile/android/base/resources/drawable-xhdpi/menu_item_more.png index 62d57047772..e6f71ec5bc1 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/menu_item_more.png and b/mobile/android/base/resources/drawable-xhdpi/menu_item_more.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/menu_item_uncheck.png b/mobile/android/base/resources/drawable-xhdpi/menu_item_uncheck.png index 1d298c4e3eb..dcec2a57e18 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/menu_item_uncheck.png and b/mobile/android/base/resources/drawable-xhdpi/menu_item_uncheck.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/menu_light.png b/mobile/android/base/resources/drawable-xhdpi/menu_light.png index 44af9a9fc04..b944b3351d4 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/menu_light.png and b/mobile/android/base/resources/drawable-xhdpi/menu_light.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/menu_panel_bg.9.png b/mobile/android/base/resources/drawable-xhdpi/menu_panel_bg.9.png index c6fc7ba0e22..0076357d7b5 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/menu_panel_bg.9.png and b/mobile/android/base/resources/drawable-xhdpi/menu_panel_bg.9.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/menu_popup_bg.9.png b/mobile/android/base/resources/drawable-xhdpi/menu_popup_bg.9.png index ccdb61fb0dd..56ae84f87aa 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/menu_popup_bg.9.png and b/mobile/android/base/resources/drawable-xhdpi/menu_popup_bg.9.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/network_error.png b/mobile/android/base/resources/drawable-xhdpi/network_error.png index 653c6c8d407..c5613865cdf 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/network_error.png and b/mobile/android/base/resources/drawable-xhdpi/network_error.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/overlay_bookmark_icon.png b/mobile/android/base/resources/drawable-xhdpi/overlay_bookmark_icon.png index 878c332251a..db438939c13 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/overlay_bookmark_icon.png and b/mobile/android/base/resources/drawable-xhdpi/overlay_bookmark_icon.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/overlay_bookmarked_already_icon.png b/mobile/android/base/resources/drawable-xhdpi/overlay_bookmarked_already_icon.png index c3304f407ac..5995d2eb1f2 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/overlay_bookmarked_already_icon.png and b/mobile/android/base/resources/drawable-xhdpi/overlay_bookmarked_already_icon.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/overlay_check.png b/mobile/android/base/resources/drawable-xhdpi/overlay_check.png index 0251dd6e3e7..95e0de26b21 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/overlay_check.png and b/mobile/android/base/resources/drawable-xhdpi/overlay_check.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/overlay_readinglist_already_icon.png b/mobile/android/base/resources/drawable-xhdpi/overlay_readinglist_already_icon.png index 4a8b50b4d56..778fdf39b34 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/overlay_readinglist_already_icon.png and b/mobile/android/base/resources/drawable-xhdpi/overlay_readinglist_already_icon.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/overlay_readinglist_icon.png b/mobile/android/base/resources/drawable-xhdpi/overlay_readinglist_icon.png index 5bc42e69772..8b57ad9fb0a 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/overlay_readinglist_icon.png and b/mobile/android/base/resources/drawable-xhdpi/overlay_readinglist_icon.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/overlay_send_tab_icon.png b/mobile/android/base/resources/drawable-xhdpi/overlay_send_tab_icon.png index bed83767953..44e6878aafb 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/overlay_send_tab_icon.png and b/mobile/android/base/resources/drawable-xhdpi/overlay_send_tab_icon.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/pause.png b/mobile/android/base/resources/drawable-xhdpi/pause.png index 0bbb7a3a336..6aae6c5eb7f 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/pause.png and b/mobile/android/base/resources/drawable-xhdpi/pause.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/pin.png b/mobile/android/base/resources/drawable-xhdpi/pin.png index 1a27b17a1b6..644e0043cc3 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/pin.png and b/mobile/android/base/resources/drawable-xhdpi/pin.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/private_masq.png b/mobile/android/base/resources/drawable-xhdpi/private_masq.png index 42ecdeb764c..5ea5f5beb97 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/private_masq.png and b/mobile/android/base/resources/drawable-xhdpi/private_masq.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/progress.9.png b/mobile/android/base/resources/drawable-xhdpi/progress.9.png index f0e482f092e..8682ea26ef0 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/progress.9.png and b/mobile/android/base/resources/drawable-xhdpi/progress.9.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/reader.png b/mobile/android/base/resources/drawable-xhdpi/reader.png index 4f7599f3161..b202314d407 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/reader.png and b/mobile/android/base/resources/drawable-xhdpi/reader.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/reader_active.png b/mobile/android/base/resources/drawable-xhdpi/reader_active.png index 7f945a7b1e1..8a9872be1e1 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/reader_active.png and b/mobile/android/base/resources/drawable-xhdpi/reader_active.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/reader_cropped.png b/mobile/android/base/resources/drawable-xhdpi/reader_cropped.png index f453e47d346..ce74be7d0a6 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/reader_cropped.png and b/mobile/android/base/resources/drawable-xhdpi/reader_cropped.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/search_clear.png b/mobile/android/base/resources/drawable-xhdpi/search_clear.png index 01eeacf70e2..b0881ed32a4 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/search_clear.png and b/mobile/android/base/resources/drawable-xhdpi/search_clear.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/search_history.png b/mobile/android/base/resources/drawable-xhdpi/search_history.png index d80c3681282..ed661a729e5 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/search_history.png and b/mobile/android/base/resources/drawable-xhdpi/search_history.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/search_icon_active.png b/mobile/android/base/resources/drawable-xhdpi/search_icon_active.png index 46651503830..baef8bea871 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/search_icon_active.png and b/mobile/android/base/resources/drawable-xhdpi/search_icon_active.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/search_icon_inactive.png b/mobile/android/base/resources/drawable-xhdpi/search_icon_inactive.png index d720c78b3bf..d3f73d7e2c8 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/search_icon_inactive.png and b/mobile/android/base/resources/drawable-xhdpi/search_icon_inactive.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/search_plus.png b/mobile/android/base/resources/drawable-xhdpi/search_plus.png index 78023111886..de3b631cf78 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/search_plus.png and b/mobile/android/base/resources/drawable-xhdpi/search_plus.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/shield_disabled.png b/mobile/android/base/resources/drawable-xhdpi/shield_disabled.png index 476445f847a..20e58daf78b 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/shield_disabled.png and b/mobile/android/base/resources/drawable-xhdpi/shield_disabled.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/shield_enabled.png b/mobile/android/base/resources/drawable-xhdpi/shield_enabled.png index 8bc7ad2eeac..c95a4876e13 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/shield_enabled.png and b/mobile/android/base/resources/drawable-xhdpi/shield_enabled.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/suggestedsites_fxaddons.png b/mobile/android/base/resources/drawable-xhdpi/suggestedsites_fxaddons.png index 813ed14fb45..b0943ba59dd 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/suggestedsites_fxaddons.png and b/mobile/android/base/resources/drawable-xhdpi/suggestedsites_fxaddons.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/suggestedsites_fxmarketplace.png b/mobile/android/base/resources/drawable-xhdpi/suggestedsites_fxmarketplace.png index f8d201f0525..720fbf17195 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/suggestedsites_fxmarketplace.png and b/mobile/android/base/resources/drawable-xhdpi/suggestedsites_fxmarketplace.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/suggestedsites_fxsupport.png b/mobile/android/base/resources/drawable-xhdpi/suggestedsites_fxsupport.png index f28a62f53a7..6a2f34978fc 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/suggestedsites_fxsupport.png and b/mobile/android/base/resources/drawable-xhdpi/suggestedsites_fxsupport.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/suggestedsites_mozilla.png b/mobile/android/base/resources/drawable-xhdpi/suggestedsites_mozilla.png index 3fabf236a68..08026bb9347 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/suggestedsites_mozilla.png and b/mobile/android/base/resources/drawable-xhdpi/suggestedsites_mozilla.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/suggestedsites_restricted_fxsupport.png b/mobile/android/base/resources/drawable-xhdpi/suggestedsites_restricted_fxsupport.png index f28a62f53a7..6a2f34978fc 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/suggestedsites_restricted_fxsupport.png and b/mobile/android/base/resources/drawable-xhdpi/suggestedsites_restricted_fxsupport.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/suggestedsites_restricted_mozilla.png b/mobile/android/base/resources/drawable-xhdpi/suggestedsites_restricted_mozilla.png index 3fabf236a68..08026bb9347 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/suggestedsites_restricted_mozilla.png and b/mobile/android/base/resources/drawable-xhdpi/suggestedsites_restricted_mozilla.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/suggestedsites_webmaker.png b/mobile/android/base/resources/drawable-xhdpi/suggestedsites_webmaker.png index a2f92d2ec4a..484ababde20 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/suggestedsites_webmaker.png and b/mobile/android/base/resources/drawable-xhdpi/suggestedsites_webmaker.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/switch_button_icon.png b/mobile/android/base/resources/drawable-xhdpi/switch_button_icon.png index 32fb1589c9b..6dfa79e5188 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/switch_button_icon.png and b/mobile/android/base/resources/drawable-xhdpi/switch_button_icon.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/sync_desktop.png b/mobile/android/base/resources/drawable-xhdpi/sync_desktop.png index 1e82f15c57a..30d5b5c09dd 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/sync_desktop.png and b/mobile/android/base/resources/drawable-xhdpi/sync_desktop.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/sync_desktop_inactive.png b/mobile/android/base/resources/drawable-xhdpi/sync_desktop_inactive.png index 8d881e19556..1b5b00a75de 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/sync_desktop_inactive.png and b/mobile/android/base/resources/drawable-xhdpi/sync_desktop_inactive.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/sync_mobile.png b/mobile/android/base/resources/drawable-xhdpi/sync_mobile.png index 62ca6745c25..2c3f45d4a30 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/sync_mobile.png and b/mobile/android/base/resources/drawable-xhdpi/sync_mobile.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/sync_mobile_inactive.png b/mobile/android/base/resources/drawable-xhdpi/sync_mobile_inactive.png index 35a03eac3c4..60fd77c8a9d 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/sync_mobile_inactive.png and b/mobile/android/base/resources/drawable-xhdpi/sync_mobile_inactive.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/sync_promo.png b/mobile/android/base/resources/drawable-xhdpi/sync_promo.png index fb5d1fee475..63f1a55ad7f 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/sync_promo.png and b/mobile/android/base/resources/drawable-xhdpi/sync_promo.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/tab_audio_playing.png b/mobile/android/base/resources/drawable-xhdpi/tab_audio_playing.png index 82098c4d922..cb4466e0e2e 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/tab_audio_playing.png and b/mobile/android/base/resources/drawable-xhdpi/tab_audio_playing.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/tab_close.png b/mobile/android/base/resources/drawable-xhdpi/tab_close.png index acd8f70ba3d..88797492bb3 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/tab_close.png and b/mobile/android/base/resources/drawable-xhdpi/tab_close.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/tab_indicator_background.9.png b/mobile/android/base/resources/drawable-xhdpi/tab_indicator_background.9.png index 54bb0c3ad5f..8b561749af9 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/tab_indicator_background.9.png and b/mobile/android/base/resources/drawable-xhdpi/tab_indicator_background.9.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/tab_indicator_divider.9.png b/mobile/android/base/resources/drawable-xhdpi/tab_indicator_divider.9.png index 0d4ce430ba7..f1338d8031c 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/tab_indicator_divider.9.png and b/mobile/android/base/resources/drawable-xhdpi/tab_indicator_divider.9.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/tab_indicator_selected.9.png b/mobile/android/base/resources/drawable-xhdpi/tab_indicator_selected.9.png index 4055b50b581..e78a2ddba67 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/tab_indicator_selected.9.png and b/mobile/android/base/resources/drawable-xhdpi/tab_indicator_selected.9.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/tab_indicator_selected_focused.9.png b/mobile/android/base/resources/drawable-xhdpi/tab_indicator_selected_focused.9.png index 30faf8eb369..3e1fe5560fe 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/tab_indicator_selected_focused.9.png and b/mobile/android/base/resources/drawable-xhdpi/tab_indicator_selected_focused.9.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/tab_new.png b/mobile/android/base/resources/drawable-xhdpi/tab_new.png index 99365ba0207..ed970f04071 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/tab_new.png and b/mobile/android/base/resources/drawable-xhdpi/tab_new.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/tab_new_pb.png b/mobile/android/base/resources/drawable-xhdpi/tab_new_pb.png index 3a7d060c5d4..41daa5591b5 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/tab_new_pb.png and b/mobile/android/base/resources/drawable-xhdpi/tab_new_pb.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/tabs_count.png b/mobile/android/base/resources/drawable-xhdpi/tabs_count.png index 670523f7f2e..e4c71cb140c 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/tabs_count.png and b/mobile/android/base/resources/drawable-xhdpi/tabs_count.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/tabs_count_foreground.png b/mobile/android/base/resources/drawable-xhdpi/tabs_count_foreground.png index 86d3acadf8a..a5a75227cae 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/tabs_count_foreground.png and b/mobile/android/base/resources/drawable-xhdpi/tabs_count_foreground.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/tabs_normal.png b/mobile/android/base/resources/drawable-xhdpi/tabs_normal.png index 114ae587cd2..f76b0221c3b 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/tabs_normal.png and b/mobile/android/base/resources/drawable-xhdpi/tabs_normal.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/tabs_private.png b/mobile/android/base/resources/drawable-xhdpi/tabs_private.png index 5550000663a..14a3f4b79e8 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/tabs_private.png and b/mobile/android/base/resources/drawable-xhdpi/tabs_private.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/tip_addsearch.png b/mobile/android/base/resources/drawable-xhdpi/tip_addsearch.png index 4adecc0694c..d7c18bdbfbe 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/tip_addsearch.png and b/mobile/android/base/resources/drawable-xhdpi/tip_addsearch.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/top_site_add.png b/mobile/android/base/resources/drawable-xhdpi/top_site_add.png index f167dc5c15c..7ddc503bf7d 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/top_site_add.png and b/mobile/android/base/resources/drawable-xhdpi/top_site_add.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/undo_button_icon.png b/mobile/android/base/resources/drawable-xhdpi/undo_button_icon.png index 58d0a03f96d..5992b4f5c4a 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/undo_button_icon.png and b/mobile/android/base/resources/drawable-xhdpi/undo_button_icon.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/url_bar_entry_default.9.png b/mobile/android/base/resources/drawable-xhdpi/url_bar_entry_default.9.png index fbb0f2d9693..e0cf4cf9090 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/url_bar_entry_default.9.png and b/mobile/android/base/resources/drawable-xhdpi/url_bar_entry_default.9.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/url_bar_entry_default_pb.9.png b/mobile/android/base/resources/drawable-xhdpi/url_bar_entry_default_pb.9.png index 5ee5fb5ba66..ca9e114b69e 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/url_bar_entry_default_pb.9.png and b/mobile/android/base/resources/drawable-xhdpi/url_bar_entry_default_pb.9.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/url_bar_entry_pressed.9.png b/mobile/android/base/resources/drawable-xhdpi/url_bar_entry_pressed.9.png index acb1884d790..8cbbff19024 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/url_bar_entry_pressed.9.png and b/mobile/android/base/resources/drawable-xhdpi/url_bar_entry_pressed.9.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/url_bar_entry_pressed_pb.9.png b/mobile/android/base/resources/drawable-xhdpi/url_bar_entry_pressed_pb.9.png index b6ca36532cd..f34244e4cbe 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/url_bar_entry_pressed_pb.9.png and b/mobile/android/base/resources/drawable-xhdpi/url_bar_entry_pressed_pb.9.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/urlbar_stop.png b/mobile/android/base/resources/drawable-xhdpi/urlbar_stop.png index 0e6ef3cb368..01519515990 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/urlbar_stop.png and b/mobile/android/base/resources/drawable-xhdpi/urlbar_stop.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/validation_arrow.png b/mobile/android/base/resources/drawable-xhdpi/validation_arrow.png index 4f7d6997e9a..0dfea5c2fae 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/validation_arrow.png and b/mobile/android/base/resources/drawable-xhdpi/validation_arrow.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/validation_arrow_inverted.png b/mobile/android/base/resources/drawable-xhdpi/validation_arrow_inverted.png index 25797f33f64..9122e2ce625 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/validation_arrow_inverted.png and b/mobile/android/base/resources/drawable-xhdpi/validation_arrow_inverted.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/validation_bg.9.png b/mobile/android/base/resources/drawable-xhdpi/validation_bg.9.png index 4d8d8056204..773aa03a8ef 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/validation_bg.9.png and b/mobile/android/base/resources/drawable-xhdpi/validation_bg.9.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/warning_major.png b/mobile/android/base/resources/drawable-xhdpi/warning_major.png index a5c86af709d..896062e988f 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/warning_major.png and b/mobile/android/base/resources/drawable-xhdpi/warning_major.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/warning_minor.png b/mobile/android/base/resources/drawable-xhdpi/warning_minor.png index 4519e04d778..84fcff9bb85 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/warning_minor.png and b/mobile/android/base/resources/drawable-xhdpi/warning_minor.png differ diff --git a/mobile/android/base/resources/drawable-xhdpi/widget_bg.9.png b/mobile/android/base/resources/drawable-xhdpi/widget_bg.9.png index caab957ed5e..cbf377ac35b 100644 Binary files a/mobile/android/base/resources/drawable-xhdpi/widget_bg.9.png and b/mobile/android/base/resources/drawable-xhdpi/widget_bg.9.png differ diff --git a/mobile/android/base/resources/drawable-xlarge-hdpi-v11/ic_menu_bookmark_add.png b/mobile/android/base/resources/drawable-xlarge-hdpi-v11/ic_menu_bookmark_add.png index 79aea57bc79..54d88fd13aa 100644 Binary files a/mobile/android/base/resources/drawable-xlarge-hdpi-v11/ic_menu_bookmark_add.png and b/mobile/android/base/resources/drawable-xlarge-hdpi-v11/ic_menu_bookmark_add.png differ diff --git a/mobile/android/base/resources/drawable-xlarge-hdpi-v11/ic_menu_bookmark_remove.png b/mobile/android/base/resources/drawable-xlarge-hdpi-v11/ic_menu_bookmark_remove.png index 67654c5d768..27d882b83cf 100644 Binary files a/mobile/android/base/resources/drawable-xlarge-hdpi-v11/ic_menu_bookmark_remove.png and b/mobile/android/base/resources/drawable-xlarge-hdpi-v11/ic_menu_bookmark_remove.png differ diff --git a/mobile/android/base/resources/drawable-xlarge-mdpi-v11/ic_menu_bookmark_add.png b/mobile/android/base/resources/drawable-xlarge-mdpi-v11/ic_menu_bookmark_add.png index 0098b76bd26..b9159d68415 100644 Binary files a/mobile/android/base/resources/drawable-xlarge-mdpi-v11/ic_menu_bookmark_add.png and b/mobile/android/base/resources/drawable-xlarge-mdpi-v11/ic_menu_bookmark_add.png differ diff --git a/mobile/android/base/resources/drawable-xlarge-mdpi-v11/ic_menu_bookmark_remove.png b/mobile/android/base/resources/drawable-xlarge-mdpi-v11/ic_menu_bookmark_remove.png index 112c5af885a..19e845c6a3e 100644 Binary files a/mobile/android/base/resources/drawable-xlarge-mdpi-v11/ic_menu_bookmark_remove.png and b/mobile/android/base/resources/drawable-xlarge-mdpi-v11/ic_menu_bookmark_remove.png differ diff --git a/mobile/android/base/resources/drawable-xlarge-xhdpi-v11/ic_menu_bookmark_add.png b/mobile/android/base/resources/drawable-xlarge-xhdpi-v11/ic_menu_bookmark_add.png index 9cf55fb7509..e54d42905bb 100644 Binary files a/mobile/android/base/resources/drawable-xlarge-xhdpi-v11/ic_menu_bookmark_add.png and b/mobile/android/base/resources/drawable-xlarge-xhdpi-v11/ic_menu_bookmark_add.png differ diff --git a/mobile/android/base/resources/drawable-xlarge-xhdpi-v11/ic_menu_bookmark_remove.png b/mobile/android/base/resources/drawable-xlarge-xhdpi-v11/ic_menu_bookmark_remove.png index 5b929943746..13bf851b0df 100644 Binary files a/mobile/android/base/resources/drawable-xlarge-xhdpi-v11/ic_menu_bookmark_remove.png and b/mobile/android/base/resources/drawable-xlarge-xhdpi-v11/ic_menu_bookmark_remove.png differ diff --git a/mobile/android/base/resources/drawable-xlarge-xxhdpi-v11/ic_menu_bookmark_add.png b/mobile/android/base/resources/drawable-xlarge-xxhdpi-v11/ic_menu_bookmark_add.png index fdf1ae32a35..0fa0711374b 100644 Binary files a/mobile/android/base/resources/drawable-xlarge-xxhdpi-v11/ic_menu_bookmark_add.png and b/mobile/android/base/resources/drawable-xlarge-xxhdpi-v11/ic_menu_bookmark_add.png differ diff --git a/mobile/android/base/resources/drawable-xlarge-xxhdpi-v11/ic_menu_bookmark_remove.png b/mobile/android/base/resources/drawable-xlarge-xxhdpi-v11/ic_menu_bookmark_remove.png index d2baeed443d..42d1f962259 100644 Binary files a/mobile/android/base/resources/drawable-xlarge-xxhdpi-v11/ic_menu_bookmark_remove.png and b/mobile/android/base/resources/drawable-xlarge-xxhdpi-v11/ic_menu_bookmark_remove.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi-v11/ic_menu_bookmark_add.png b/mobile/android/base/resources/drawable-xxhdpi-v11/ic_menu_bookmark_add.png index cee2869351d..e2f719a1ff4 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi-v11/ic_menu_bookmark_add.png and b/mobile/android/base/resources/drawable-xxhdpi-v11/ic_menu_bookmark_add.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi-v11/ic_menu_bookmark_remove.png b/mobile/android/base/resources/drawable-xxhdpi-v11/ic_menu_bookmark_remove.png index ca25d9833d0..a61b15b0445 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi-v11/ic_menu_bookmark_remove.png and b/mobile/android/base/resources/drawable-xxhdpi-v11/ic_menu_bookmark_remove.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi-v11/ic_menu_reader_add.png b/mobile/android/base/resources/drawable-xxhdpi-v11/ic_menu_reader_add.png index 1138f9894a4..9361ddfd1ec 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi-v11/ic_menu_reader_add.png and b/mobile/android/base/resources/drawable-xxhdpi-v11/ic_menu_reader_add.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi-v11/ic_menu_reader_remove.png b/mobile/android/base/resources/drawable-xxhdpi-v11/ic_menu_reader_remove.png index 4e7d1fbb15c..41e370b35e2 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi-v11/ic_menu_reader_remove.png and b/mobile/android/base/resources/drawable-xxhdpi-v11/ic_menu_reader_remove.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/ab_mic.png b/mobile/android/base/resources/drawable-xxhdpi/ab_mic.png index 55b54754791..14e4cff784b 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/ab_mic.png and b/mobile/android/base/resources/drawable-xxhdpi/ab_mic.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/close_edit_mode_dark.png b/mobile/android/base/resources/drawable-xxhdpi/close_edit_mode_dark.png index c3e3dc464ea..0f0e95debcb 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/close_edit_mode_dark.png and b/mobile/android/base/resources/drawable-xxhdpi/close_edit_mode_dark.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/close_edit_mode_light.png b/mobile/android/base/resources/drawable-xxhdpi/close_edit_mode_light.png index 5a44d90c235..5f9a2f7e5e5 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/close_edit_mode_light.png and b/mobile/android/base/resources/drawable-xxhdpi/close_edit_mode_light.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/device_desktop.png b/mobile/android/base/resources/drawable-xxhdpi/device_desktop.png index 4b09888467c..6a386c4e71b 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/device_desktop.png and b/mobile/android/base/resources/drawable-xxhdpi/device_desktop.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/device_mobile.png b/mobile/android/base/resources/drawable-xxhdpi/device_mobile.png index fd61563444a..d32a9b35333 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/device_mobile.png and b/mobile/android/base/resources/drawable-xxhdpi/device_mobile.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/dropshadow.9.png b/mobile/android/base/resources/drawable-xxhdpi/dropshadow.9.png index 113e1010acc..a408d91af5e 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/dropshadow.9.png and b/mobile/android/base/resources/drawable-xxhdpi/dropshadow.9.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/flat_icon.png b/mobile/android/base/resources/drawable-xxhdpi/flat_icon.png index 0935d820846..57d83a59e7c 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/flat_icon.png and b/mobile/android/base/resources/drawable-xxhdpi/flat_icon.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/fxaccount_sync_error.png b/mobile/android/base/resources/drawable-xxhdpi/fxaccount_sync_error.png index 194df8e5f53..d27dbc57cf4 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/fxaccount_sync_error.png and b/mobile/android/base/resources/drawable-xxhdpi/fxaccount_sync_error.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/globe_light.png b/mobile/android/base/resources/drawable-xxhdpi/globe_light.png index 97a1512801b..1d96cbe9102 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/globe_light.png and b/mobile/android/base/resources/drawable-xxhdpi/globe_light.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/home_group_collapsed.png b/mobile/android/base/resources/drawable-xxhdpi/home_group_collapsed.png index f2ac168b32e..319ab3d50d1 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/home_group_collapsed.png and b/mobile/android/base/resources/drawable-xxhdpi/home_group_collapsed.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/home_group_expanded.png b/mobile/android/base/resources/drawable-xxhdpi/home_group_expanded.png index 7e5b968fecd..2d9d03e5ffd 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/home_group_expanded.png and b/mobile/android/base/resources/drawable-xxhdpi/home_group_expanded.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/homepage_banner_firstrun.png b/mobile/android/base/resources/drawable-xxhdpi/homepage_banner_firstrun.png index e38c916b452..3ef8f157d0a 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/homepage_banner_firstrun.png and b/mobile/android/base/resources/drawable-xxhdpi/homepage_banner_firstrun.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/ic_action_settings.png b/mobile/android/base/resources/drawable-xxhdpi/ic_action_settings.png index 0b01eddee5f..9ce42fffe35 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/ic_action_settings.png and b/mobile/android/base/resources/drawable-xxhdpi/ic_action_settings.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/ic_menu_share.png b/mobile/android/base/resources/drawable-xxhdpi/ic_menu_share.png index 664597c23b3..de6f092ee39 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/ic_menu_share.png and b/mobile/android/base/resources/drawable-xxhdpi/ic_menu_share.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/ic_widget_new_tab.png b/mobile/android/base/resources/drawable-xxhdpi/ic_widget_new_tab.png index d7f2b0c5ff3..2ab09b8fb86 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/ic_widget_new_tab.png and b/mobile/android/base/resources/drawable-xxhdpi/ic_widget_new_tab.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/ic_widget_search.png b/mobile/android/base/resources/drawable-xxhdpi/ic_widget_search.png index c191cb11229..d6ba7c84654 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/ic_widget_search.png and b/mobile/android/base/resources/drawable-xxhdpi/ic_widget_search.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/icon_key.png b/mobile/android/base/resources/drawable-xxhdpi/icon_key.png index f7b344b29d2..0f6925b04e3 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/icon_key.png and b/mobile/android/base/resources/drawable-xxhdpi/icon_key.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/icon_search_empty_firefox.png b/mobile/android/base/resources/drawable-xxhdpi/icon_search_empty_firefox.png index 2bdca16fb33..b16c1ab79fe 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/icon_search_empty_firefox.png and b/mobile/android/base/resources/drawable-xxhdpi/icon_search_empty_firefox.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/icon_shareplane.png b/mobile/android/base/resources/drawable-xxhdpi/icon_shareplane.png index 482fc454f59..63e9f25193a 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/icon_shareplane.png and b/mobile/android/base/resources/drawable-xxhdpi/icon_shareplane.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/img_check.png b/mobile/android/base/resources/drawable-xxhdpi/img_check.png index b4bb48d3192..13e92046418 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/img_check.png and b/mobile/android/base/resources/drawable-xxhdpi/img_check.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/location.png b/mobile/android/base/resources/drawable-xxhdpi/location.png index 8c80dcb6ab4..e8c27ca43b8 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/location.png and b/mobile/android/base/resources/drawable-xxhdpi/location.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/lock_disabled.png b/mobile/android/base/resources/drawable-xxhdpi/lock_disabled.png index 0ccccca49da..75631d10abe 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/lock_disabled.png and b/mobile/android/base/resources/drawable-xxhdpi/lock_disabled.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/lock_inactive.png b/mobile/android/base/resources/drawable-xxhdpi/lock_inactive.png index af1b4b71a85..4242bb7df40 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/lock_inactive.png and b/mobile/android/base/resources/drawable-xxhdpi/lock_inactive.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/lock_secure.png b/mobile/android/base/resources/drawable-xxhdpi/lock_secure.png index 7e6d59ccedb..334ca18a95c 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/lock_secure.png and b/mobile/android/base/resources/drawable-xxhdpi/lock_secure.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/network_error.png b/mobile/android/base/resources/drawable-xxhdpi/network_error.png index 8272110d67c..4074ac2a852 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/network_error.png and b/mobile/android/base/resources/drawable-xxhdpi/network_error.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/overlay_bookmark_icon.png b/mobile/android/base/resources/drawable-xxhdpi/overlay_bookmark_icon.png index 8883787cbe2..05dc926f2c3 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/overlay_bookmark_icon.png and b/mobile/android/base/resources/drawable-xxhdpi/overlay_bookmark_icon.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/overlay_bookmarked_already_icon.png b/mobile/android/base/resources/drawable-xxhdpi/overlay_bookmarked_already_icon.png index 8a983bf9463..9afb290c4d3 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/overlay_bookmarked_already_icon.png and b/mobile/android/base/resources/drawable-xxhdpi/overlay_bookmarked_already_icon.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/overlay_check.png b/mobile/android/base/resources/drawable-xxhdpi/overlay_check.png index 1b013db090f..33532ecee41 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/overlay_check.png and b/mobile/android/base/resources/drawable-xxhdpi/overlay_check.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/overlay_readinglist_already_icon.png b/mobile/android/base/resources/drawable-xxhdpi/overlay_readinglist_already_icon.png index f630b3573c1..6c1700090de 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/overlay_readinglist_already_icon.png and b/mobile/android/base/resources/drawable-xxhdpi/overlay_readinglist_already_icon.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/overlay_readinglist_icon.png b/mobile/android/base/resources/drawable-xxhdpi/overlay_readinglist_icon.png index ac92d2c64ee..f3228599d38 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/overlay_readinglist_icon.png and b/mobile/android/base/resources/drawable-xxhdpi/overlay_readinglist_icon.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/overlay_send_tab_icon.png b/mobile/android/base/resources/drawable-xxhdpi/overlay_send_tab_icon.png index 08630f1a381..c9436aab805 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/overlay_send_tab_icon.png and b/mobile/android/base/resources/drawable-xxhdpi/overlay_send_tab_icon.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/search_clear.png b/mobile/android/base/resources/drawable-xxhdpi/search_clear.png index bf2f802b950..f21257bea6c 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/search_clear.png and b/mobile/android/base/resources/drawable-xxhdpi/search_clear.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/search_history.png b/mobile/android/base/resources/drawable-xxhdpi/search_history.png index fe5af1a92bd..fbcdbdbbae4 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/search_history.png and b/mobile/android/base/resources/drawable-xxhdpi/search_history.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/search_icon_active.png b/mobile/android/base/resources/drawable-xxhdpi/search_icon_active.png index f42627eae61..093b066c999 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/search_icon_active.png and b/mobile/android/base/resources/drawable-xxhdpi/search_icon_active.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/search_icon_inactive.png b/mobile/android/base/resources/drawable-xxhdpi/search_icon_inactive.png index 837a3cb18b2..4117c6332c4 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/search_icon_inactive.png and b/mobile/android/base/resources/drawable-xxhdpi/search_icon_inactive.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/search_plus.png b/mobile/android/base/resources/drawable-xxhdpi/search_plus.png index f377ffa0279..8ac7df9e98e 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/search_plus.png and b/mobile/android/base/resources/drawable-xxhdpi/search_plus.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/shield_disabled.png b/mobile/android/base/resources/drawable-xxhdpi/shield_disabled.png index 571d7aa6a16..4217bcdf970 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/shield_disabled.png and b/mobile/android/base/resources/drawable-xxhdpi/shield_disabled.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/shield_enabled.png b/mobile/android/base/resources/drawable-xxhdpi/shield_enabled.png index e172b49105e..5a47ad89040 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/shield_enabled.png and b/mobile/android/base/resources/drawable-xxhdpi/shield_enabled.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/suggestedsites_fxaddons.png b/mobile/android/base/resources/drawable-xxhdpi/suggestedsites_fxaddons.png index ef989768432..2f20f19e26b 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/suggestedsites_fxaddons.png and b/mobile/android/base/resources/drawable-xxhdpi/suggestedsites_fxaddons.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/suggestedsites_fxmarketplace.png b/mobile/android/base/resources/drawable-xxhdpi/suggestedsites_fxmarketplace.png index f518916e814..1e020973da3 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/suggestedsites_fxmarketplace.png and b/mobile/android/base/resources/drawable-xxhdpi/suggestedsites_fxmarketplace.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/suggestedsites_fxsupport.png b/mobile/android/base/resources/drawable-xxhdpi/suggestedsites_fxsupport.png index 13634c2759d..b0c336d910c 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/suggestedsites_fxsupport.png and b/mobile/android/base/resources/drawable-xxhdpi/suggestedsites_fxsupport.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/suggestedsites_mozilla.png b/mobile/android/base/resources/drawable-xxhdpi/suggestedsites_mozilla.png index 190c9b0bafe..0b35eb7b13a 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/suggestedsites_mozilla.png and b/mobile/android/base/resources/drawable-xxhdpi/suggestedsites_mozilla.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/sync_avatar_default.png b/mobile/android/base/resources/drawable-xxhdpi/sync_avatar_default.png index b3fecb90f84..16d127882f2 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/sync_avatar_default.png and b/mobile/android/base/resources/drawable-xxhdpi/sync_avatar_default.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/sync_desktop.png b/mobile/android/base/resources/drawable-xxhdpi/sync_desktop.png index 23f473056e4..9bb9a55c2ca 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/sync_desktop.png and b/mobile/android/base/resources/drawable-xxhdpi/sync_desktop.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/sync_desktop_inactive.png b/mobile/android/base/resources/drawable-xxhdpi/sync_desktop_inactive.png index da5f4c42ac4..c3fe0ec1d5c 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/sync_desktop_inactive.png and b/mobile/android/base/resources/drawable-xxhdpi/sync_desktop_inactive.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/sync_mobile.png b/mobile/android/base/resources/drawable-xxhdpi/sync_mobile.png index 33b5bf658fa..400ddf65bd9 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/sync_mobile.png and b/mobile/android/base/resources/drawable-xxhdpi/sync_mobile.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/sync_mobile_inactive.png b/mobile/android/base/resources/drawable-xxhdpi/sync_mobile_inactive.png index 6a50bed5897..a688b0d7b63 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/sync_mobile_inactive.png and b/mobile/android/base/resources/drawable-xxhdpi/sync_mobile_inactive.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/url_bar_entry_default.9.png b/mobile/android/base/resources/drawable-xxhdpi/url_bar_entry_default.9.png index 6fa46293335..e7814da98c6 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/url_bar_entry_default.9.png and b/mobile/android/base/resources/drawable-xxhdpi/url_bar_entry_default.9.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/url_bar_entry_pressed.9.png b/mobile/android/base/resources/drawable-xxhdpi/url_bar_entry_pressed.9.png index d304f3c5dfc..ff0bdb79b20 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/url_bar_entry_pressed.9.png and b/mobile/android/base/resources/drawable-xxhdpi/url_bar_entry_pressed.9.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/url_bar_entry_pressed_pb.9.png b/mobile/android/base/resources/drawable-xxhdpi/url_bar_entry_pressed_pb.9.png index 1253672ee32..5eb9cecb419 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/url_bar_entry_pressed_pb.9.png and b/mobile/android/base/resources/drawable-xxhdpi/url_bar_entry_pressed_pb.9.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/urlbar_stop.png b/mobile/android/base/resources/drawable-xxhdpi/urlbar_stop.png index 1301cae71ad..510cd7b3c34 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/urlbar_stop.png and b/mobile/android/base/resources/drawable-xxhdpi/urlbar_stop.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/warning_major.png b/mobile/android/base/resources/drawable-xxhdpi/warning_major.png index a40dbcdb9fb..2ef73217a5d 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/warning_major.png and b/mobile/android/base/resources/drawable-xxhdpi/warning_major.png differ diff --git a/mobile/android/base/resources/drawable-xxhdpi/warning_minor.png b/mobile/android/base/resources/drawable-xxhdpi/warning_minor.png index a7d788c1cf6..a634ec78cf3 100644 Binary files a/mobile/android/base/resources/drawable-xxhdpi/warning_minor.png and b/mobile/android/base/resources/drawable-xxhdpi/warning_minor.png differ diff --git a/mobile/android/base/resources/drawable-xxxhdpi/search_launcher.png b/mobile/android/base/resources/drawable-xxxhdpi/search_launcher.png index 3d4e65d88ae..1f70d13dbee 100644 Binary files a/mobile/android/base/resources/drawable-xxxhdpi/search_launcher.png and b/mobile/android/base/resources/drawable-xxxhdpi/search_launcher.png differ diff --git a/mobile/android/base/resources/drawable/scrollbar.png b/mobile/android/base/resources/drawable/scrollbar.png index 363d6358a6e..55462df1dc0 100644 Binary files a/mobile/android/base/resources/drawable/scrollbar.png and b/mobile/android/base/resources/drawable/scrollbar.png differ diff --git a/mobile/android/base/resources/raw/bookmarkdefaults_favicon_addons.png b/mobile/android/base/resources/raw/bookmarkdefaults_favicon_addons.png index ae5bfbe191a..333a321d623 100644 Binary files a/mobile/android/base/resources/raw/bookmarkdefaults_favicon_addons.png and b/mobile/android/base/resources/raw/bookmarkdefaults_favicon_addons.png differ diff --git a/mobile/android/base/resources/raw/bookmarkdefaults_favicon_support.png b/mobile/android/base/resources/raw/bookmarkdefaults_favicon_support.png index ea7d6a3aeb3..15521024760 100644 Binary files a/mobile/android/base/resources/raw/bookmarkdefaults_favicon_support.png and b/mobile/android/base/resources/raw/bookmarkdefaults_favicon_support.png differ diff --git a/mobile/android/branding/aurora/content/about.png b/mobile/android/branding/aurora/content/about.png index e0a8040ef24..3779bd120cc 100644 Binary files a/mobile/android/branding/aurora/content/about.png and b/mobile/android/branding/aurora/content/about.png differ diff --git a/mobile/android/branding/aurora/content/favicon32.png b/mobile/android/branding/aurora/content/favicon32.png index d12245bd2a0..3d841d6c6bf 100644 Binary files a/mobile/android/branding/aurora/content/favicon32.png and b/mobile/android/branding/aurora/content/favicon32.png differ diff --git a/mobile/android/branding/aurora/content/favicon64.png b/mobile/android/branding/aurora/content/favicon64.png index 9e43cbb33eb..9848b54d92c 100644 Binary files a/mobile/android/branding/aurora/content/favicon64.png and b/mobile/android/branding/aurora/content/favicon64.png differ diff --git a/mobile/android/branding/aurora/res/drawable-hdpi/icon.png b/mobile/android/branding/aurora/res/drawable-hdpi/icon.png index dd6faf6f6c7..3a4b0e87c0a 100644 Binary files a/mobile/android/branding/aurora/res/drawable-hdpi/icon.png and b/mobile/android/branding/aurora/res/drawable-hdpi/icon.png differ diff --git a/mobile/android/branding/aurora/res/drawable-hdpi/large_icon.png b/mobile/android/branding/aurora/res/drawable-hdpi/large_icon.png index e94121b3cd9..229ad5e0fdb 100644 Binary files a/mobile/android/branding/aurora/res/drawable-hdpi/large_icon.png and b/mobile/android/branding/aurora/res/drawable-hdpi/large_icon.png differ diff --git a/mobile/android/branding/aurora/res/drawable-hdpi/launcher_widget.png b/mobile/android/branding/aurora/res/drawable-hdpi/launcher_widget.png index 4d7dc659a56..8e55b0c1133 100644 Binary files a/mobile/android/branding/aurora/res/drawable-hdpi/launcher_widget.png and b/mobile/android/branding/aurora/res/drawable-hdpi/launcher_widget.png differ diff --git a/mobile/android/branding/aurora/res/drawable-hdpi/widget_icon.png b/mobile/android/branding/aurora/res/drawable-hdpi/widget_icon.png index 519a83cfc52..09668e1ff32 100644 Binary files a/mobile/android/branding/aurora/res/drawable-hdpi/widget_icon.png and b/mobile/android/branding/aurora/res/drawable-hdpi/widget_icon.png differ diff --git a/mobile/android/branding/aurora/res/drawable-xhdpi/icon.png b/mobile/android/branding/aurora/res/drawable-xhdpi/icon.png index b6eee4c0c64..526951e9605 100644 Binary files a/mobile/android/branding/aurora/res/drawable-xhdpi/icon.png and b/mobile/android/branding/aurora/res/drawable-xhdpi/icon.png differ diff --git a/mobile/android/branding/aurora/res/drawable-xhdpi/large_icon.png b/mobile/android/branding/aurora/res/drawable-xhdpi/large_icon.png index 3e3823f8aad..f7ee2d29bdd 100644 Binary files a/mobile/android/branding/aurora/res/drawable-xhdpi/large_icon.png and b/mobile/android/branding/aurora/res/drawable-xhdpi/large_icon.png differ diff --git a/mobile/android/branding/aurora/res/drawable-xhdpi/launcher_widget.png b/mobile/android/branding/aurora/res/drawable-xhdpi/launcher_widget.png index beff04f1fc1..56f47446a6f 100644 Binary files a/mobile/android/branding/aurora/res/drawable-xhdpi/launcher_widget.png and b/mobile/android/branding/aurora/res/drawable-xhdpi/launcher_widget.png differ diff --git a/mobile/android/branding/aurora/res/drawable-xhdpi/widget_icon.png b/mobile/android/branding/aurora/res/drawable-xhdpi/widget_icon.png index d4b25483cd5..5c2f876a050 100644 Binary files a/mobile/android/branding/aurora/res/drawable-xhdpi/widget_icon.png and b/mobile/android/branding/aurora/res/drawable-xhdpi/widget_icon.png differ diff --git a/mobile/android/branding/aurora/res/drawable-xxhdpi/icon.png b/mobile/android/branding/aurora/res/drawable-xxhdpi/icon.png index e94121b3cd9..229ad5e0fdb 100644 Binary files a/mobile/android/branding/aurora/res/drawable-xxhdpi/icon.png and b/mobile/android/branding/aurora/res/drawable-xxhdpi/icon.png differ diff --git a/mobile/android/branding/aurora/res/drawable-xxhdpi/launcher_widget.png b/mobile/android/branding/aurora/res/drawable-xxhdpi/launcher_widget.png index 07c1bac09c3..eb88984dbf0 100644 Binary files a/mobile/android/branding/aurora/res/drawable-xxhdpi/launcher_widget.png and b/mobile/android/branding/aurora/res/drawable-xxhdpi/launcher_widget.png differ diff --git a/mobile/android/branding/aurora/res/drawable-xxhdpi/widget_icon.png b/mobile/android/branding/aurora/res/drawable-xxhdpi/widget_icon.png index fc95f08ba18..4114d5fd4c2 100644 Binary files a/mobile/android/branding/aurora/res/drawable-xxhdpi/widget_icon.png and b/mobile/android/branding/aurora/res/drawable-xxhdpi/widget_icon.png differ diff --git a/mobile/android/branding/aurora/res/drawable-xxxhdpi/icon.png b/mobile/android/branding/aurora/res/drawable-xxxhdpi/icon.png index 3e3823f8aad..d7affbaf483 100644 Binary files a/mobile/android/branding/aurora/res/drawable-xxxhdpi/icon.png and b/mobile/android/branding/aurora/res/drawable-xxxhdpi/icon.png differ diff --git a/mobile/android/branding/beta/content/about.png b/mobile/android/branding/beta/content/about.png index c2cc83a8f81..dc52e843bd0 100644 Binary files a/mobile/android/branding/beta/content/about.png and b/mobile/android/branding/beta/content/about.png differ diff --git a/mobile/android/branding/beta/content/favicon32.png b/mobile/android/branding/beta/content/favicon32.png index 9e9492edf0a..63b54a2473d 100644 Binary files a/mobile/android/branding/beta/content/favicon32.png and b/mobile/android/branding/beta/content/favicon32.png differ diff --git a/mobile/android/branding/beta/content/favicon64.png b/mobile/android/branding/beta/content/favicon64.png index e7f17866106..b564667b6d1 100644 Binary files a/mobile/android/branding/beta/content/favicon64.png and b/mobile/android/branding/beta/content/favicon64.png differ diff --git a/mobile/android/branding/beta/res/drawable-hdpi/icon.png b/mobile/android/branding/beta/res/drawable-hdpi/icon.png index d4b3f929dd2..fc450d0fdd3 100644 Binary files a/mobile/android/branding/beta/res/drawable-hdpi/icon.png and b/mobile/android/branding/beta/res/drawable-hdpi/icon.png differ diff --git a/mobile/android/branding/beta/res/drawable-hdpi/large_icon.png b/mobile/android/branding/beta/res/drawable-hdpi/large_icon.png index 64f1f8f9776..8b7f313fbeb 100644 Binary files a/mobile/android/branding/beta/res/drawable-hdpi/large_icon.png and b/mobile/android/branding/beta/res/drawable-hdpi/large_icon.png differ diff --git a/mobile/android/branding/beta/res/drawable-hdpi/launcher_widget.png b/mobile/android/branding/beta/res/drawable-hdpi/launcher_widget.png index 20c1d0728cf..ba8ba8eed07 100644 Binary files a/mobile/android/branding/beta/res/drawable-hdpi/launcher_widget.png and b/mobile/android/branding/beta/res/drawable-hdpi/launcher_widget.png differ diff --git a/mobile/android/branding/beta/res/drawable-hdpi/widget_icon.png b/mobile/android/branding/beta/res/drawable-hdpi/widget_icon.png index df30a314894..4aa9a153bbd 100644 Binary files a/mobile/android/branding/beta/res/drawable-hdpi/widget_icon.png and b/mobile/android/branding/beta/res/drawable-hdpi/widget_icon.png differ diff --git a/mobile/android/branding/beta/res/drawable-xhdpi/icon.png b/mobile/android/branding/beta/res/drawable-xhdpi/icon.png index 34b90e3007f..94f3512a83d 100644 Binary files a/mobile/android/branding/beta/res/drawable-xhdpi/icon.png and b/mobile/android/branding/beta/res/drawable-xhdpi/icon.png differ diff --git a/mobile/android/branding/beta/res/drawable-xhdpi/large_icon.png b/mobile/android/branding/beta/res/drawable-xhdpi/large_icon.png index 0626cb83ca4..344bb30c9b0 100644 Binary files a/mobile/android/branding/beta/res/drawable-xhdpi/large_icon.png and b/mobile/android/branding/beta/res/drawable-xhdpi/large_icon.png differ diff --git a/mobile/android/branding/beta/res/drawable-xhdpi/launcher_widget.png b/mobile/android/branding/beta/res/drawable-xhdpi/launcher_widget.png index e77e84fbb80..d15d5b91ea6 100644 Binary files a/mobile/android/branding/beta/res/drawable-xhdpi/launcher_widget.png and b/mobile/android/branding/beta/res/drawable-xhdpi/launcher_widget.png differ diff --git a/mobile/android/branding/beta/res/drawable-xhdpi/widget_icon.png b/mobile/android/branding/beta/res/drawable-xhdpi/widget_icon.png index 9c661b613d5..fd38fd534ab 100644 Binary files a/mobile/android/branding/beta/res/drawable-xhdpi/widget_icon.png and b/mobile/android/branding/beta/res/drawable-xhdpi/widget_icon.png differ diff --git a/mobile/android/branding/beta/res/drawable-xxhdpi/icon.png b/mobile/android/branding/beta/res/drawable-xxhdpi/icon.png index 64f1f8f9776..8b7f313fbeb 100644 Binary files a/mobile/android/branding/beta/res/drawable-xxhdpi/icon.png and b/mobile/android/branding/beta/res/drawable-xxhdpi/icon.png differ diff --git a/mobile/android/branding/beta/res/drawable-xxhdpi/launcher_widget.png b/mobile/android/branding/beta/res/drawable-xxhdpi/launcher_widget.png index 81a15709369..df75a5b2f7b 100644 Binary files a/mobile/android/branding/beta/res/drawable-xxhdpi/launcher_widget.png and b/mobile/android/branding/beta/res/drawable-xxhdpi/launcher_widget.png differ diff --git a/mobile/android/branding/beta/res/drawable-xxxhdpi/icon.png b/mobile/android/branding/beta/res/drawable-xxxhdpi/icon.png index 0626cb83ca4..dbbf4be4e7d 100644 Binary files a/mobile/android/branding/beta/res/drawable-xxxhdpi/icon.png and b/mobile/android/branding/beta/res/drawable-xxxhdpi/icon.png differ diff --git a/mobile/android/branding/nightly/content/about.png b/mobile/android/branding/nightly/content/about.png index c44d2250562..d6602ec6257 100644 Binary files a/mobile/android/branding/nightly/content/about.png and b/mobile/android/branding/nightly/content/about.png differ diff --git a/mobile/android/branding/nightly/content/favicon32.png b/mobile/android/branding/nightly/content/favicon32.png index 284c27889a2..902c41995ad 100644 Binary files a/mobile/android/branding/nightly/content/favicon32.png and b/mobile/android/branding/nightly/content/favicon32.png differ diff --git a/mobile/android/branding/nightly/content/favicon64.png b/mobile/android/branding/nightly/content/favicon64.png index abf45431273..ce2f506d256 100644 Binary files a/mobile/android/branding/nightly/content/favicon64.png and b/mobile/android/branding/nightly/content/favicon64.png differ diff --git a/mobile/android/branding/nightly/res/drawable-hdpi/icon.png b/mobile/android/branding/nightly/res/drawable-hdpi/icon.png index 4106f66aacc..f629bc7a268 100644 Binary files a/mobile/android/branding/nightly/res/drawable-hdpi/icon.png and b/mobile/android/branding/nightly/res/drawable-hdpi/icon.png differ diff --git a/mobile/android/branding/nightly/res/drawable-hdpi/large_icon.png b/mobile/android/branding/nightly/res/drawable-hdpi/large_icon.png index 7f5173db6c7..417e67b89ac 100644 Binary files a/mobile/android/branding/nightly/res/drawable-hdpi/large_icon.png and b/mobile/android/branding/nightly/res/drawable-hdpi/large_icon.png differ diff --git a/mobile/android/branding/nightly/res/drawable-hdpi/launcher_widget.png b/mobile/android/branding/nightly/res/drawable-hdpi/launcher_widget.png index 4d7dc659a56..8e55b0c1133 100644 Binary files a/mobile/android/branding/nightly/res/drawable-hdpi/launcher_widget.png and b/mobile/android/branding/nightly/res/drawable-hdpi/launcher_widget.png differ diff --git a/mobile/android/branding/nightly/res/drawable-hdpi/widget_icon.png b/mobile/android/branding/nightly/res/drawable-hdpi/widget_icon.png index 08ca060c44c..232791e8836 100644 Binary files a/mobile/android/branding/nightly/res/drawable-hdpi/widget_icon.png and b/mobile/android/branding/nightly/res/drawable-hdpi/widget_icon.png differ diff --git a/mobile/android/branding/nightly/res/drawable-xhdpi/icon.png b/mobile/android/branding/nightly/res/drawable-xhdpi/icon.png index a94fc85550d..e52a8d7611e 100644 Binary files a/mobile/android/branding/nightly/res/drawable-xhdpi/icon.png and b/mobile/android/branding/nightly/res/drawable-xhdpi/icon.png differ diff --git a/mobile/android/branding/nightly/res/drawable-xhdpi/large_icon.png b/mobile/android/branding/nightly/res/drawable-xhdpi/large_icon.png index de6b7971b68..fac09d6b394 100644 Binary files a/mobile/android/branding/nightly/res/drawable-xhdpi/large_icon.png and b/mobile/android/branding/nightly/res/drawable-xhdpi/large_icon.png differ diff --git a/mobile/android/branding/nightly/res/drawable-xhdpi/launcher_widget.png b/mobile/android/branding/nightly/res/drawable-xhdpi/launcher_widget.png index beff04f1fc1..56f47446a6f 100644 Binary files a/mobile/android/branding/nightly/res/drawable-xhdpi/launcher_widget.png and b/mobile/android/branding/nightly/res/drawable-xhdpi/launcher_widget.png differ diff --git a/mobile/android/branding/nightly/res/drawable-xhdpi/widget_icon.png b/mobile/android/branding/nightly/res/drawable-xhdpi/widget_icon.png index 554b5342255..09bb78274b8 100644 Binary files a/mobile/android/branding/nightly/res/drawable-xhdpi/widget_icon.png and b/mobile/android/branding/nightly/res/drawable-xhdpi/widget_icon.png differ diff --git a/mobile/android/branding/nightly/res/drawable-xxhdpi/icon.png b/mobile/android/branding/nightly/res/drawable-xxhdpi/icon.png index 7f5173db6c7..d2f134b2459 100644 Binary files a/mobile/android/branding/nightly/res/drawable-xxhdpi/icon.png and b/mobile/android/branding/nightly/res/drawable-xxhdpi/icon.png differ diff --git a/mobile/android/branding/nightly/res/drawable-xxhdpi/launcher_widget.png b/mobile/android/branding/nightly/res/drawable-xxhdpi/launcher_widget.png index 07c1bac09c3..eb88984dbf0 100644 Binary files a/mobile/android/branding/nightly/res/drawable-xxhdpi/launcher_widget.png and b/mobile/android/branding/nightly/res/drawable-xxhdpi/launcher_widget.png differ diff --git a/mobile/android/branding/nightly/res/drawable-xxhdpi/widget_icon.png b/mobile/android/branding/nightly/res/drawable-xxhdpi/widget_icon.png index 33b0c8637da..43b679b6556 100644 Binary files a/mobile/android/branding/nightly/res/drawable-xxhdpi/widget_icon.png and b/mobile/android/branding/nightly/res/drawable-xxhdpi/widget_icon.png differ diff --git a/mobile/android/branding/nightly/res/drawable-xxxhdpi/icon.png b/mobile/android/branding/nightly/res/drawable-xxxhdpi/icon.png index de6b7971b68..0355594586f 100644 Binary files a/mobile/android/branding/nightly/res/drawable-xxxhdpi/icon.png and b/mobile/android/branding/nightly/res/drawable-xxxhdpi/icon.png differ diff --git a/mobile/android/branding/official/content/about.png b/mobile/android/branding/official/content/about.png index c2cc83a8f81..dc52e843bd0 100644 Binary files a/mobile/android/branding/official/content/about.png and b/mobile/android/branding/official/content/about.png differ diff --git a/mobile/android/branding/official/content/favicon32.png b/mobile/android/branding/official/content/favicon32.png index 9e9492edf0a..63b54a2473d 100644 Binary files a/mobile/android/branding/official/content/favicon32.png and b/mobile/android/branding/official/content/favicon32.png differ diff --git a/mobile/android/branding/official/content/favicon64.png b/mobile/android/branding/official/content/favicon64.png index e7f17866106..d92bf0c851f 100644 Binary files a/mobile/android/branding/official/content/favicon64.png and b/mobile/android/branding/official/content/favicon64.png differ diff --git a/mobile/android/branding/official/res/drawable-hdpi/icon.png b/mobile/android/branding/official/res/drawable-hdpi/icon.png index e5dd157802d..de9052a1074 100644 Binary files a/mobile/android/branding/official/res/drawable-hdpi/icon.png and b/mobile/android/branding/official/res/drawable-hdpi/icon.png differ diff --git a/mobile/android/branding/official/res/drawable-hdpi/large_icon.png b/mobile/android/branding/official/res/drawable-hdpi/large_icon.png index 2f77696abb3..b14cd3d810e 100644 Binary files a/mobile/android/branding/official/res/drawable-hdpi/large_icon.png and b/mobile/android/branding/official/res/drawable-hdpi/large_icon.png differ diff --git a/mobile/android/branding/official/res/drawable-hdpi/launcher_widget.png b/mobile/android/branding/official/res/drawable-hdpi/launcher_widget.png index 76e722db676..2528f4b3506 100644 Binary files a/mobile/android/branding/official/res/drawable-hdpi/launcher_widget.png and b/mobile/android/branding/official/res/drawable-hdpi/launcher_widget.png differ diff --git a/mobile/android/branding/official/res/drawable-hdpi/widget_icon.png b/mobile/android/branding/official/res/drawable-hdpi/widget_icon.png index f88357b6b42..5f942006d83 100644 Binary files a/mobile/android/branding/official/res/drawable-hdpi/widget_icon.png and b/mobile/android/branding/official/res/drawable-hdpi/widget_icon.png differ diff --git a/mobile/android/branding/official/res/drawable-xhdpi/icon.png b/mobile/android/branding/official/res/drawable-xhdpi/icon.png index 4263ad5a95c..6c929b3100a 100644 Binary files a/mobile/android/branding/official/res/drawable-xhdpi/icon.png and b/mobile/android/branding/official/res/drawable-xhdpi/icon.png differ diff --git a/mobile/android/branding/official/res/drawable-xhdpi/large_icon.png b/mobile/android/branding/official/res/drawable-xhdpi/large_icon.png index c5767bb298b..793da8ed5c4 100644 Binary files a/mobile/android/branding/official/res/drawable-xhdpi/large_icon.png and b/mobile/android/branding/official/res/drawable-xhdpi/large_icon.png differ diff --git a/mobile/android/branding/official/res/drawable-xhdpi/launcher_widget.png b/mobile/android/branding/official/res/drawable-xhdpi/launcher_widget.png index d1bfb2602f2..a4d8bdaf577 100644 Binary files a/mobile/android/branding/official/res/drawable-xhdpi/launcher_widget.png and b/mobile/android/branding/official/res/drawable-xhdpi/launcher_widget.png differ diff --git a/mobile/android/branding/official/res/drawable-xhdpi/widget_icon.png b/mobile/android/branding/official/res/drawable-xhdpi/widget_icon.png index a1b4ba689d8..d500f2cfc9f 100644 Binary files a/mobile/android/branding/official/res/drawable-xhdpi/widget_icon.png and b/mobile/android/branding/official/res/drawable-xhdpi/widget_icon.png differ diff --git a/mobile/android/branding/official/res/drawable-xxhdpi/icon.png b/mobile/android/branding/official/res/drawable-xxhdpi/icon.png index 2f77696abb3..b14cd3d810e 100644 Binary files a/mobile/android/branding/official/res/drawable-xxhdpi/icon.png and b/mobile/android/branding/official/res/drawable-xxhdpi/icon.png differ diff --git a/mobile/android/branding/official/res/drawable-xxhdpi/launcher_widget.png b/mobile/android/branding/official/res/drawable-xxhdpi/launcher_widget.png index 89a40e2d26d..f41cbc08d0f 100644 Binary files a/mobile/android/branding/official/res/drawable-xxhdpi/launcher_widget.png and b/mobile/android/branding/official/res/drawable-xxhdpi/launcher_widget.png differ diff --git a/mobile/android/branding/official/res/drawable-xxhdpi/widget_icon.png b/mobile/android/branding/official/res/drawable-xxhdpi/widget_icon.png index 831d46e2882..477eefb775c 100644 Binary files a/mobile/android/branding/official/res/drawable-xxhdpi/widget_icon.png and b/mobile/android/branding/official/res/drawable-xxhdpi/widget_icon.png differ diff --git a/mobile/android/branding/official/res/drawable-xxxhdpi/icon.png b/mobile/android/branding/official/res/drawable-xxxhdpi/icon.png index c5767bb298b..f2fa508128f 100644 Binary files a/mobile/android/branding/official/res/drawable-xxxhdpi/icon.png and b/mobile/android/branding/official/res/drawable-xxxhdpi/icon.png differ diff --git a/mobile/android/branding/unofficial/content/about.png b/mobile/android/branding/unofficial/content/about.png index 2e09fb26530..e3f697e8d5c 100644 Binary files a/mobile/android/branding/unofficial/content/about.png and b/mobile/android/branding/unofficial/content/about.png differ diff --git a/mobile/android/branding/unofficial/content/favicon32.png b/mobile/android/branding/unofficial/content/favicon32.png index 50623f5a427..c43d5a2295a 100644 Binary files a/mobile/android/branding/unofficial/content/favicon32.png and b/mobile/android/branding/unofficial/content/favicon32.png differ diff --git a/mobile/android/branding/unofficial/content/favicon64.png b/mobile/android/branding/unofficial/content/favicon64.png index de9ca927e64..f92f41de31d 100644 Binary files a/mobile/android/branding/unofficial/content/favicon64.png and b/mobile/android/branding/unofficial/content/favicon64.png differ diff --git a/mobile/android/branding/unofficial/res/drawable-hdpi/icon.png b/mobile/android/branding/unofficial/res/drawable-hdpi/icon.png index 58b2da23f7a..786894f7705 100644 Binary files a/mobile/android/branding/unofficial/res/drawable-hdpi/icon.png and b/mobile/android/branding/unofficial/res/drawable-hdpi/icon.png differ diff --git a/mobile/android/branding/unofficial/res/drawable-hdpi/large_icon.png b/mobile/android/branding/unofficial/res/drawable-hdpi/large_icon.png index 62a0ffbb4bb..f5960422664 100644 Binary files a/mobile/android/branding/unofficial/res/drawable-hdpi/large_icon.png and b/mobile/android/branding/unofficial/res/drawable-hdpi/large_icon.png differ diff --git a/mobile/android/branding/unofficial/res/drawable-hdpi/launcher_widget.png b/mobile/android/branding/unofficial/res/drawable-hdpi/launcher_widget.png index 4d7dc659a56..8e55b0c1133 100644 Binary files a/mobile/android/branding/unofficial/res/drawable-hdpi/launcher_widget.png and b/mobile/android/branding/unofficial/res/drawable-hdpi/launcher_widget.png differ diff --git a/mobile/android/branding/unofficial/res/drawable-xhdpi/icon.png b/mobile/android/branding/unofficial/res/drawable-xhdpi/icon.png index 227c3c9d155..7ebffe3a51b 100644 Binary files a/mobile/android/branding/unofficial/res/drawable-xhdpi/icon.png and b/mobile/android/branding/unofficial/res/drawable-xhdpi/icon.png differ diff --git a/mobile/android/branding/unofficial/res/drawable-xhdpi/large_icon.png b/mobile/android/branding/unofficial/res/drawable-xhdpi/large_icon.png index 62a0ffbb4bb..f5960422664 100644 Binary files a/mobile/android/branding/unofficial/res/drawable-xhdpi/large_icon.png and b/mobile/android/branding/unofficial/res/drawable-xhdpi/large_icon.png differ diff --git a/mobile/android/branding/unofficial/res/drawable-xhdpi/launcher_widget.png b/mobile/android/branding/unofficial/res/drawable-xhdpi/launcher_widget.png index beff04f1fc1..56f47446a6f 100644 Binary files a/mobile/android/branding/unofficial/res/drawable-xhdpi/launcher_widget.png and b/mobile/android/branding/unofficial/res/drawable-xhdpi/launcher_widget.png differ diff --git a/mobile/android/branding/unofficial/res/drawable-xhdpi/widget_icon.png b/mobile/android/branding/unofficial/res/drawable-xhdpi/widget_icon.png index 554b5342255..dae20b5131a 100644 Binary files a/mobile/android/branding/unofficial/res/drawable-xhdpi/widget_icon.png and b/mobile/android/branding/unofficial/res/drawable-xhdpi/widget_icon.png differ diff --git a/mobile/android/branding/unofficial/res/drawable-xxhdpi/icon.png b/mobile/android/branding/unofficial/res/drawable-xxhdpi/icon.png index 62a0ffbb4bb..f5960422664 100644 Binary files a/mobile/android/branding/unofficial/res/drawable-xxhdpi/icon.png and b/mobile/android/branding/unofficial/res/drawable-xxhdpi/icon.png differ diff --git a/mobile/android/branding/unofficial/res/drawable-xxhdpi/large_icon.png b/mobile/android/branding/unofficial/res/drawable-xxhdpi/large_icon.png index 62a0ffbb4bb..f5960422664 100644 Binary files a/mobile/android/branding/unofficial/res/drawable-xxhdpi/large_icon.png and b/mobile/android/branding/unofficial/res/drawable-xxhdpi/large_icon.png differ diff --git a/mobile/android/branding/unofficial/res/drawable-xxhdpi/launcher_widget.png b/mobile/android/branding/unofficial/res/drawable-xxhdpi/launcher_widget.png index 07c1bac09c3..eb88984dbf0 100644 Binary files a/mobile/android/branding/unofficial/res/drawable-xxhdpi/launcher_widget.png and b/mobile/android/branding/unofficial/res/drawable-xxhdpi/launcher_widget.png differ diff --git a/mobile/android/mach_commands.py b/mobile/android/mach_commands.py index d7a5b1fba5f..1a400328c1c 100644 --- a/mobile/android/mach_commands.py +++ b/mobile/android/mach_commands.py @@ -142,6 +142,7 @@ class MachCommands(MachCommandBase): srcdir('base/src/webrtc_video_capture/java', 'media/webrtc/trunk/webrtc/modules/video_capture/android/java/src') srcdir('base/src/webrtc_video_render/java', 'media/webrtc/trunk/webrtc/modules/video_render/android/java/src') srcdir('base/src/main/res', 'mobile/android/base/resources') + srcdir('base/src/main/assets', 'mobile/android/app/assets') srcdir('base/src/crashreporter/res', 'mobile/android/base/crashreporter/res') manifest_path = os.path.join(self.topobjdir, 'mobile', 'android', 'gradle.manifest') diff --git a/mobile/android/themes/core/images/5stars.png b/mobile/android/themes/core/images/5stars.png index c5fb5de9c40..f374e326d8c 100644 Binary files a/mobile/android/themes/core/images/5stars.png and b/mobile/android/themes/core/images/5stars.png differ diff --git a/mobile/android/themes/core/images/about-btn-darkgrey.png b/mobile/android/themes/core/images/about-btn-darkgrey.png index 6c5a8a4a3c3..24e2aae8351 100644 Binary files a/mobile/android/themes/core/images/about-btn-darkgrey.png and b/mobile/android/themes/core/images/about-btn-darkgrey.png differ diff --git a/mobile/android/themes/core/images/addons-32.png b/mobile/android/themes/core/images/addons-32.png index a50103206d2..350dcb5a3e7 100644 Binary files a/mobile/android/themes/core/images/addons-32.png and b/mobile/android/themes/core/images/addons-32.png differ diff --git a/mobile/android/themes/core/images/amo-logo.png b/mobile/android/themes/core/images/amo-logo.png index 642777dba35..f18ab8cbca4 100644 Binary files a/mobile/android/themes/core/images/amo-logo.png and b/mobile/android/themes/core/images/amo-logo.png differ diff --git a/mobile/android/themes/core/images/arrowdown-16.png b/mobile/android/themes/core/images/arrowdown-16.png index 6ceffc863f0..27e3c50c347 100644 Binary files a/mobile/android/themes/core/images/arrowdown-16.png and b/mobile/android/themes/core/images/arrowdown-16.png differ diff --git a/mobile/android/themes/core/images/arrowleft-16.png b/mobile/android/themes/core/images/arrowleft-16.png index 248537ebcd7..cd67e9db1df 100644 Binary files a/mobile/android/themes/core/images/arrowleft-16.png and b/mobile/android/themes/core/images/arrowleft-16.png differ diff --git a/mobile/android/themes/core/images/arrowright-16.png b/mobile/android/themes/core/images/arrowright-16.png index c91c53fd4ff..21df3027b2a 100644 Binary files a/mobile/android/themes/core/images/arrowright-16.png and b/mobile/android/themes/core/images/arrowright-16.png differ diff --git a/mobile/android/themes/core/images/arrowup-16.png b/mobile/android/themes/core/images/arrowup-16.png index 58771e9d261..ad422bfb066 100644 Binary files a/mobile/android/themes/core/images/arrowup-16.png and b/mobile/android/themes/core/images/arrowup-16.png differ diff --git a/mobile/android/themes/core/images/blocked-warning.png b/mobile/android/themes/core/images/blocked-warning.png index 2418973b616..3920aff3c89 100644 Binary files a/mobile/android/themes/core/images/blocked-warning.png and b/mobile/android/themes/core/images/blocked-warning.png differ diff --git a/mobile/android/themes/core/images/cast-active-hdpi.png b/mobile/android/themes/core/images/cast-active-hdpi.png index 655ecc8eb3b..e3a1e47d963 100644 Binary files a/mobile/android/themes/core/images/cast-active-hdpi.png and b/mobile/android/themes/core/images/cast-active-hdpi.png differ diff --git a/mobile/android/themes/core/images/cast-ready-hdpi.png b/mobile/android/themes/core/images/cast-ready-hdpi.png index 5966ee1b0c6..8f344f0ebe6 100644 Binary files a/mobile/android/themes/core/images/cast-ready-hdpi.png and b/mobile/android/themes/core/images/cast-ready-hdpi.png differ diff --git a/mobile/android/themes/core/images/certerror-warning.png b/mobile/android/themes/core/images/certerror-warning.png index 624106eee7a..053cea74169 100644 Binary files a/mobile/android/themes/core/images/certerror-warning.png and b/mobile/android/themes/core/images/certerror-warning.png differ diff --git a/mobile/android/themes/core/images/checkbox_checked.png b/mobile/android/themes/core/images/checkbox_checked.png index 26e0b49b287..8de545e2f06 100644 Binary files a/mobile/android/themes/core/images/checkbox_checked.png and b/mobile/android/themes/core/images/checkbox_checked.png differ diff --git a/mobile/android/themes/core/images/checkbox_checked_disabled.png b/mobile/android/themes/core/images/checkbox_checked_disabled.png index 0ee34bb2884..d9382442723 100644 Binary files a/mobile/android/themes/core/images/checkbox_checked_disabled.png and b/mobile/android/themes/core/images/checkbox_checked_disabled.png differ diff --git a/mobile/android/themes/core/images/checkbox_checked_pressed.png b/mobile/android/themes/core/images/checkbox_checked_pressed.png index 67f0f6be0e0..d3adc73ccb5 100644 Binary files a/mobile/android/themes/core/images/checkbox_checked_pressed.png and b/mobile/android/themes/core/images/checkbox_checked_pressed.png differ diff --git a/mobile/android/themes/core/images/checkbox_unchecked.png b/mobile/android/themes/core/images/checkbox_unchecked.png index 0ba564a6f83..5089b7fa97b 100644 Binary files a/mobile/android/themes/core/images/checkbox_unchecked.png and b/mobile/android/themes/core/images/checkbox_unchecked.png differ diff --git a/mobile/android/themes/core/images/checkbox_unchecked_disabled.png b/mobile/android/themes/core/images/checkbox_unchecked_disabled.png index c676e227a7b..f9c8bdea065 100644 Binary files a/mobile/android/themes/core/images/checkbox_unchecked_disabled.png and b/mobile/android/themes/core/images/checkbox_unchecked_disabled.png differ diff --git a/mobile/android/themes/core/images/checkbox_unchecked_pressed.png b/mobile/android/themes/core/images/checkbox_unchecked_pressed.png index 5e957ff0fd4..b682b5aaa30 100644 Binary files a/mobile/android/themes/core/images/checkbox_unchecked_pressed.png and b/mobile/android/themes/core/images/checkbox_unchecked_pressed.png differ diff --git a/mobile/android/themes/core/images/chevron.png b/mobile/android/themes/core/images/chevron.png index c7ddde2607a..7080dac5c8f 100644 Binary files a/mobile/android/themes/core/images/chevron.png and b/mobile/android/themes/core/images/chevron.png differ diff --git a/mobile/android/themes/core/images/config-plus.png b/mobile/android/themes/core/images/config-plus.png index abfdbec4b9a..10da3ed5a40 100644 Binary files a/mobile/android/themes/core/images/config-plus.png and b/mobile/android/themes/core/images/config-plus.png differ diff --git a/mobile/android/themes/core/images/default-app-icon.png b/mobile/android/themes/core/images/default-app-icon.png index 7c5e48cb8be..40f3fd81ed2 100644 Binary files a/mobile/android/themes/core/images/default-app-icon.png and b/mobile/android/themes/core/images/default-app-icon.png differ diff --git a/mobile/android/themes/core/images/errorpage-larry-black.png b/mobile/android/themes/core/images/errorpage-larry-black.png index 333084343dd..7b1e124e956 100644 Binary files a/mobile/android/themes/core/images/errorpage-larry-black.png and b/mobile/android/themes/core/images/errorpage-larry-black.png differ diff --git a/mobile/android/themes/core/images/errorpage-larry-white.png b/mobile/android/themes/core/images/errorpage-larry-white.png index 6f93c22c523..7f98112c098 100644 Binary files a/mobile/android/themes/core/images/errorpage-larry-white.png and b/mobile/android/themes/core/images/errorpage-larry-white.png differ diff --git a/mobile/android/themes/core/images/errorpage-warning.png b/mobile/android/themes/core/images/errorpage-warning.png index a96439aa89f..d2acea2210c 100644 Binary files a/mobile/android/themes/core/images/errorpage-warning.png and b/mobile/android/themes/core/images/errorpage-warning.png differ diff --git a/mobile/android/themes/core/images/exitfullscreen-hdpi.png b/mobile/android/themes/core/images/exitfullscreen-hdpi.png index 402be0c6be2..ac9f211b394 100644 Binary files a/mobile/android/themes/core/images/exitfullscreen-hdpi.png and b/mobile/android/themes/core/images/exitfullscreen-hdpi.png differ diff --git a/mobile/android/themes/core/images/fullscreen-hdpi.png b/mobile/android/themes/core/images/fullscreen-hdpi.png index a98bff33de9..08f9db5b04a 100644 Binary files a/mobile/android/themes/core/images/fullscreen-hdpi.png and b/mobile/android/themes/core/images/fullscreen-hdpi.png differ diff --git a/mobile/android/themes/core/images/icon_floaty_hdpi.png b/mobile/android/themes/core/images/icon_floaty_hdpi.png index f9204ecc506..a85aec31932 100644 Binary files a/mobile/android/themes/core/images/icon_floaty_hdpi.png and b/mobile/android/themes/core/images/icon_floaty_hdpi.png differ diff --git a/mobile/android/themes/core/images/icon_floaty_mdpi.png b/mobile/android/themes/core/images/icon_floaty_mdpi.png index e3bbf79ca4f..deaa3335336 100644 Binary files a/mobile/android/themes/core/images/icon_floaty_mdpi.png and b/mobile/android/themes/core/images/icon_floaty_mdpi.png differ diff --git a/mobile/android/themes/core/images/icon_floaty_xhdpi.png b/mobile/android/themes/core/images/icon_floaty_xhdpi.png index 22b7323f08d..d822eee5ab5 100644 Binary files a/mobile/android/themes/core/images/icon_floaty_xhdpi.png and b/mobile/android/themes/core/images/icon_floaty_xhdpi.png differ diff --git a/mobile/android/themes/core/images/icon_floaty_xxhdpi.png b/mobile/android/themes/core/images/icon_floaty_xxhdpi.png index 3c6dd693746..79982875801 100644 Binary files a/mobile/android/themes/core/images/icon_floaty_xxhdpi.png and b/mobile/android/themes/core/images/icon_floaty_xxhdpi.png differ diff --git a/mobile/android/themes/core/images/icon_heart_hdpi.png b/mobile/android/themes/core/images/icon_heart_hdpi.png index 0aec6b885fc..b97452336e4 100644 Binary files a/mobile/android/themes/core/images/icon_heart_hdpi.png and b/mobile/android/themes/core/images/icon_heart_hdpi.png differ diff --git a/mobile/android/themes/core/images/icon_heart_mdpi.png b/mobile/android/themes/core/images/icon_heart_mdpi.png index 1f18448cd12..03846509ed7 100644 Binary files a/mobile/android/themes/core/images/icon_heart_mdpi.png and b/mobile/android/themes/core/images/icon_heart_mdpi.png differ diff --git a/mobile/android/themes/core/images/icon_heart_xhdpi.png b/mobile/android/themes/core/images/icon_heart_xhdpi.png index 99d2c8b1ccc..808cdf42a89 100644 Binary files a/mobile/android/themes/core/images/icon_heart_xhdpi.png and b/mobile/android/themes/core/images/icon_heart_xhdpi.png differ diff --git a/mobile/android/themes/core/images/icon_heart_xxhdpi.png b/mobile/android/themes/core/images/icon_heart_xxhdpi.png index dae8e25109d..6ab6ca52f9e 100644 Binary files a/mobile/android/themes/core/images/icon_heart_xxhdpi.png and b/mobile/android/themes/core/images/icon_heart_xxhdpi.png differ diff --git a/mobile/android/themes/core/images/lock.png b/mobile/android/themes/core/images/lock.png index 27cf636cc75..0d3565c325e 100644 Binary files a/mobile/android/themes/core/images/lock.png and b/mobile/android/themes/core/images/lock.png differ diff --git a/mobile/android/themes/core/images/logo-hdpi.png b/mobile/android/themes/core/images/logo-hdpi.png index c67dbe8950f..82553891f6b 100644 Binary files a/mobile/android/themes/core/images/logo-hdpi.png and b/mobile/android/themes/core/images/logo-hdpi.png differ diff --git a/mobile/android/themes/core/images/mute-hdpi.png b/mobile/android/themes/core/images/mute-hdpi.png index efd14f57608..e99ef1c1b87 100644 Binary files a/mobile/android/themes/core/images/mute-hdpi.png and b/mobile/android/themes/core/images/mute-hdpi.png differ diff --git a/mobile/android/themes/core/images/pause-hdpi.png b/mobile/android/themes/core/images/pause-hdpi.png index 99966db50f7..f3ddd0e73a9 100644 Binary files a/mobile/android/themes/core/images/pause-hdpi.png and b/mobile/android/themes/core/images/pause-hdpi.png differ diff --git a/mobile/android/themes/core/images/play-hdpi.png b/mobile/android/themes/core/images/play-hdpi.png index 90d30e14c12..0472946f06f 100644 Binary files a/mobile/android/themes/core/images/play-hdpi.png and b/mobile/android/themes/core/images/play-hdpi.png differ diff --git a/mobile/android/themes/core/images/privatebrowsing-mask.png b/mobile/android/themes/core/images/privatebrowsing-mask.png index 2dc2df42883..e62cdbe137c 100644 Binary files a/mobile/android/themes/core/images/privatebrowsing-mask.png and b/mobile/android/themes/core/images/privatebrowsing-mask.png differ diff --git a/mobile/android/themes/core/images/reader-minus-hdpi.png b/mobile/android/themes/core/images/reader-minus-hdpi.png index 31932ada1e9..d6ea9b3fdff 100644 Binary files a/mobile/android/themes/core/images/reader-minus-hdpi.png and b/mobile/android/themes/core/images/reader-minus-hdpi.png differ diff --git a/mobile/android/themes/core/images/reader-minus-mdpi.png b/mobile/android/themes/core/images/reader-minus-mdpi.png index db2a5e80911..cb46de3d1e5 100644 Binary files a/mobile/android/themes/core/images/reader-minus-mdpi.png and b/mobile/android/themes/core/images/reader-minus-mdpi.png differ diff --git a/mobile/android/themes/core/images/reader-minus-xhdpi.png b/mobile/android/themes/core/images/reader-minus-xhdpi.png index e4878aa58e9..5597200540d 100644 Binary files a/mobile/android/themes/core/images/reader-minus-xhdpi.png and b/mobile/android/themes/core/images/reader-minus-xhdpi.png differ diff --git a/mobile/android/themes/core/images/reader-minus-xxhdpi.png b/mobile/android/themes/core/images/reader-minus-xxhdpi.png index c7db678b191..355d82f9fd6 100644 Binary files a/mobile/android/themes/core/images/reader-minus-xxhdpi.png and b/mobile/android/themes/core/images/reader-minus-xxhdpi.png differ diff --git a/mobile/android/themes/core/images/reader-plus-hdpi.png b/mobile/android/themes/core/images/reader-plus-hdpi.png index 95dc1e41ae6..87a32678333 100644 Binary files a/mobile/android/themes/core/images/reader-plus-hdpi.png and b/mobile/android/themes/core/images/reader-plus-hdpi.png differ diff --git a/mobile/android/themes/core/images/reader-plus-mdpi.png b/mobile/android/themes/core/images/reader-plus-mdpi.png index 1ec5732f58d..ef53c28683b 100644 Binary files a/mobile/android/themes/core/images/reader-plus-mdpi.png and b/mobile/android/themes/core/images/reader-plus-mdpi.png differ diff --git a/mobile/android/themes/core/images/reader-plus-xhdpi.png b/mobile/android/themes/core/images/reader-plus-xhdpi.png index 3cd446a62e7..ff6fc2e33bc 100644 Binary files a/mobile/android/themes/core/images/reader-plus-xhdpi.png and b/mobile/android/themes/core/images/reader-plus-xhdpi.png differ diff --git a/mobile/android/themes/core/images/reader-plus-xxhdpi.png b/mobile/android/themes/core/images/reader-plus-xxhdpi.png index 6b73e9f0a2d..6f475c5d3de 100644 Binary files a/mobile/android/themes/core/images/reader-plus-xxhdpi.png and b/mobile/android/themes/core/images/reader-plus-xxhdpi.png differ diff --git a/mobile/android/themes/core/images/reader-share-icon-hdpi.png b/mobile/android/themes/core/images/reader-share-icon-hdpi.png index d38cb503071..c58461cdcf9 100644 Binary files a/mobile/android/themes/core/images/reader-share-icon-hdpi.png and b/mobile/android/themes/core/images/reader-share-icon-hdpi.png differ diff --git a/mobile/android/themes/core/images/reader-share-icon-mdpi.png b/mobile/android/themes/core/images/reader-share-icon-mdpi.png index cc6d72ef4ec..2332164dea9 100644 Binary files a/mobile/android/themes/core/images/reader-share-icon-mdpi.png and b/mobile/android/themes/core/images/reader-share-icon-mdpi.png differ diff --git a/mobile/android/themes/core/images/reader-share-icon-xhdpi.png b/mobile/android/themes/core/images/reader-share-icon-xhdpi.png index b7bf6d12bb5..b2d752db355 100644 Binary files a/mobile/android/themes/core/images/reader-share-icon-xhdpi.png and b/mobile/android/themes/core/images/reader-share-icon-xhdpi.png differ diff --git a/mobile/android/themes/core/images/reader-share-icon-xxhdpi.png b/mobile/android/themes/core/images/reader-share-icon-xxhdpi.png index fee49e5f2ae..6cd73a7d06f 100644 Binary files a/mobile/android/themes/core/images/reader-share-icon-xxhdpi.png and b/mobile/android/themes/core/images/reader-share-icon-xxhdpi.png differ diff --git a/mobile/android/themes/core/images/reader-style-icon-active-hdpi.png b/mobile/android/themes/core/images/reader-style-icon-active-hdpi.png index c7d17a9172a..308e78c25d3 100644 Binary files a/mobile/android/themes/core/images/reader-style-icon-active-hdpi.png and b/mobile/android/themes/core/images/reader-style-icon-active-hdpi.png differ diff --git a/mobile/android/themes/core/images/reader-style-icon-active-mdpi.png b/mobile/android/themes/core/images/reader-style-icon-active-mdpi.png index b453459ff8e..c1a2cac429c 100644 Binary files a/mobile/android/themes/core/images/reader-style-icon-active-mdpi.png and b/mobile/android/themes/core/images/reader-style-icon-active-mdpi.png differ diff --git a/mobile/android/themes/core/images/reader-style-icon-active-xhdpi.png b/mobile/android/themes/core/images/reader-style-icon-active-xhdpi.png index dd13cf4dc6c..5b0a8109d81 100644 Binary files a/mobile/android/themes/core/images/reader-style-icon-active-xhdpi.png and b/mobile/android/themes/core/images/reader-style-icon-active-xhdpi.png differ diff --git a/mobile/android/themes/core/images/reader-style-icon-active-xxhdpi.png b/mobile/android/themes/core/images/reader-style-icon-active-xxhdpi.png index 195b56e873b..d90f7e3f224 100644 Binary files a/mobile/android/themes/core/images/reader-style-icon-active-xxhdpi.png and b/mobile/android/themes/core/images/reader-style-icon-active-xxhdpi.png differ diff --git a/mobile/android/themes/core/images/reader-style-icon-hdpi.png b/mobile/android/themes/core/images/reader-style-icon-hdpi.png index 8d0403ac8c2..8bd8fea7c17 100644 Binary files a/mobile/android/themes/core/images/reader-style-icon-hdpi.png and b/mobile/android/themes/core/images/reader-style-icon-hdpi.png differ diff --git a/mobile/android/themes/core/images/reader-style-icon-mdpi.png b/mobile/android/themes/core/images/reader-style-icon-mdpi.png index 250cc4569eb..4f6a91a84df 100644 Binary files a/mobile/android/themes/core/images/reader-style-icon-mdpi.png and b/mobile/android/themes/core/images/reader-style-icon-mdpi.png differ diff --git a/mobile/android/themes/core/images/reader-style-icon-xhdpi.png b/mobile/android/themes/core/images/reader-style-icon-xhdpi.png index ca5a4aeb7db..46e8645971b 100644 Binary files a/mobile/android/themes/core/images/reader-style-icon-xhdpi.png and b/mobile/android/themes/core/images/reader-style-icon-xhdpi.png differ diff --git a/mobile/android/themes/core/images/reader-style-icon-xxhdpi.png b/mobile/android/themes/core/images/reader-style-icon-xxhdpi.png index 6d8cb28b8cf..25e967a84d1 100644 Binary files a/mobile/android/themes/core/images/reader-style-icon-xxhdpi.png and b/mobile/android/themes/core/images/reader-style-icon-xxhdpi.png differ diff --git a/mobile/android/themes/core/images/reader-toggle-off-icon-hdpi.png b/mobile/android/themes/core/images/reader-toggle-off-icon-hdpi.png index f684d478267..90402468bfe 100644 Binary files a/mobile/android/themes/core/images/reader-toggle-off-icon-hdpi.png and b/mobile/android/themes/core/images/reader-toggle-off-icon-hdpi.png differ diff --git a/mobile/android/themes/core/images/reader-toggle-off-icon-mdpi.png b/mobile/android/themes/core/images/reader-toggle-off-icon-mdpi.png index 44ea19e095b..fd8f4b206aa 100644 Binary files a/mobile/android/themes/core/images/reader-toggle-off-icon-mdpi.png and b/mobile/android/themes/core/images/reader-toggle-off-icon-mdpi.png differ diff --git a/mobile/android/themes/core/images/reader-toggle-off-icon-xhdpi.png b/mobile/android/themes/core/images/reader-toggle-off-icon-xhdpi.png index 5bc42e69772..8b57ad9fb0a 100644 Binary files a/mobile/android/themes/core/images/reader-toggle-off-icon-xhdpi.png and b/mobile/android/themes/core/images/reader-toggle-off-icon-xhdpi.png differ diff --git a/mobile/android/themes/core/images/reader-toggle-off-icon-xxhdpi.png b/mobile/android/themes/core/images/reader-toggle-off-icon-xxhdpi.png index ac92d2c64ee..f3228599d38 100644 Binary files a/mobile/android/themes/core/images/reader-toggle-off-icon-xxhdpi.png and b/mobile/android/themes/core/images/reader-toggle-off-icon-xxhdpi.png differ diff --git a/mobile/android/themes/core/images/reader-toggle-on-icon-hdpi.png b/mobile/android/themes/core/images/reader-toggle-on-icon-hdpi.png index ac140e15f25..9495bc0b3de 100644 Binary files a/mobile/android/themes/core/images/reader-toggle-on-icon-hdpi.png and b/mobile/android/themes/core/images/reader-toggle-on-icon-hdpi.png differ diff --git a/mobile/android/themes/core/images/reader-toggle-on-icon-mdpi.png b/mobile/android/themes/core/images/reader-toggle-on-icon-mdpi.png index 25b05b039c5..b1991ac54b7 100644 Binary files a/mobile/android/themes/core/images/reader-toggle-on-icon-mdpi.png and b/mobile/android/themes/core/images/reader-toggle-on-icon-mdpi.png differ diff --git a/mobile/android/themes/core/images/reader-toggle-on-icon-xhdpi.png b/mobile/android/themes/core/images/reader-toggle-on-icon-xhdpi.png index d02a87ddc70..109e3571aa2 100644 Binary files a/mobile/android/themes/core/images/reader-toggle-on-icon-xhdpi.png and b/mobile/android/themes/core/images/reader-toggle-on-icon-xhdpi.png differ diff --git a/mobile/android/themes/core/images/reader-toggle-on-icon-xxhdpi.png b/mobile/android/themes/core/images/reader-toggle-on-icon-xxhdpi.png index 5467fe26aaa..91446889788 100644 Binary files a/mobile/android/themes/core/images/reader-toggle-on-icon-xxhdpi.png and b/mobile/android/themes/core/images/reader-toggle-on-icon-xxhdpi.png differ diff --git a/mobile/android/themes/core/images/scrubber-hdpi.png b/mobile/android/themes/core/images/scrubber-hdpi.png index a1ba09dc9bd..bd464f42911 100644 Binary files a/mobile/android/themes/core/images/scrubber-hdpi.png and b/mobile/android/themes/core/images/scrubber-hdpi.png differ diff --git a/mobile/android/themes/core/images/search-clear-30.png b/mobile/android/themes/core/images/search-clear-30.png index 3acdbafa2a7..75af18a3eb0 100644 Binary files a/mobile/android/themes/core/images/search-clear-30.png and b/mobile/android/themes/core/images/search-clear-30.png differ diff --git a/mobile/android/themes/core/images/search.png b/mobile/android/themes/core/images/search.png index e127d7d84e3..18460da05db 100644 Binary files a/mobile/android/themes/core/images/search.png and b/mobile/android/themes/core/images/search.png differ diff --git a/mobile/android/themes/core/images/textfield.png b/mobile/android/themes/core/images/textfield.png index 24f82552d26..c3210cd7198 100644 Binary files a/mobile/android/themes/core/images/textfield.png and b/mobile/android/themes/core/images/textfield.png differ diff --git a/mobile/android/themes/core/images/throbber.png b/mobile/android/themes/core/images/throbber.png index 0a4307dbd0a..8a7bfb6ab20 100644 Binary files a/mobile/android/themes/core/images/throbber.png and b/mobile/android/themes/core/images/throbber.png differ diff --git a/mobile/android/themes/core/images/unmute-hdpi.png b/mobile/android/themes/core/images/unmute-hdpi.png index 4dbb94f98f0..accb21cded1 100644 Binary files a/mobile/android/themes/core/images/unmute-hdpi.png and b/mobile/android/themes/core/images/unmute-hdpi.png differ diff --git a/mobile/android/themes/core/images/wordmark-hdpi.png b/mobile/android/themes/core/images/wordmark-hdpi.png index 718cbfc9616..3d3b145deb7 100644 Binary files a/mobile/android/themes/core/images/wordmark-hdpi.png and b/mobile/android/themes/core/images/wordmark-hdpi.png differ diff --git a/python/mozbuild/mozbuild/backend/recursivemake.py b/python/mozbuild/mozbuild/backend/recursivemake.py index e21aec10d7d..86de6351b35 100644 --- a/python/mozbuild/mozbuild/backend/recursivemake.py +++ b/python/mozbuild/mozbuild/backend/recursivemake.py @@ -26,6 +26,8 @@ import mozpack.path as mozpath from .common import CommonBackend from ..frontend.data import ( + AndroidAssetsDirs, + AndroidResDirs, AndroidEclipseProjectData, BrandingFiles, ConfigFileSubstitution, @@ -70,6 +72,7 @@ from ..util import ( from ..makeutil import Makefile MOZBUILD_VARIABLES = [ + b'ANDROID_ASSETS_DIRS', b'ANDROID_GENERATED_RESFILES', b'ANDROID_RES_DIRS', b'ASFLAGS', @@ -598,6 +601,14 @@ class RecursiveMakeBackend(CommonBackend): for f in obj.files: backend_file.write('DIST_FILES += %s\n' % f) + elif isinstance(obj, AndroidResDirs): + for p in obj.paths: + backend_file.write('ANDROID_RES_DIRS += %s\n' % p.full_path) + + elif isinstance(obj, AndroidAssetsDirs): + for p in obj.paths: + backend_file.write('ANDROID_ASSETS_DIRS += %s\n' % p.full_path) + else: return obj.ack() diff --git a/python/mozbuild/mozbuild/frontend/context.py b/python/mozbuild/mozbuild/frontend/context.py index b5c016b08c7..906f075e21c 100644 --- a/python/mozbuild/mozbuild/frontend/context.py +++ b/python/mozbuild/mozbuild/frontend/context.py @@ -330,8 +330,13 @@ class PathMeta(type): assert isinstance(context, Context) if isinstance(value, Path): context = value.context - if not issubclass(cls, (SourcePath, ObjDirPath)): - cls = ObjDirPath if value.startswith('!') else SourcePath + if not issubclass(cls, (SourcePath, ObjDirPath, AbsolutePath)): + if value.startswith('!'): + cls = ObjDirPath + elif value.startswith('%'): + cls = AbsolutePath + else: + cls = SourcePath return super(PathMeta, cls).__call__(context, value) class Path(ContextDerivedValue, unicode): @@ -343,6 +348,7 @@ class Path(ContextDerivedValue, unicode): - 'srcdir/relative/paths' - '!/topobjdir/relative/paths' - '!objdir/relative/paths' + - '%/filesystem/absolute/paths' """ __metaclass__ = PathMeta @@ -398,6 +404,8 @@ class SourcePath(Path): def __init__(self, context, value): if value.startswith('!'): raise ValueError('Object directory paths are not allowed') + if value.startswith('%'): + raise ValueError('Filesystem absolute paths are not allowed') super(SourcePath, self).__init__(context, value) if value.startswith('/'): @@ -429,7 +437,7 @@ class ObjDirPath(Path): """Like Path, but limited to paths in the object directory.""" def __init__(self, context, value=None): if not value.startswith('!'): - raise ValueError('Source paths are not allowed') + raise ValueError('Object directory paths must start with ! prefix') super(ObjDirPath, self).__init__(context, value) if value.startswith('!/'): @@ -439,6 +447,18 @@ class ObjDirPath(Path): self.full_path = mozpath.normpath(path) +class AbsolutePath(Path): + """Like Path, but allows arbitrary paths outside the source and object directories.""" + def __init__(self, context, value=None): + if not value.startswith('%'): + raise ValueError('Absolute paths must start with % prefix') + if not os.path.isabs(value[1:]): + raise ValueError('Path \'%s\' is not absolute' % value[1:]) + super(AbsolutePath, self).__init__(context, value) + + self.full_path = mozpath.normpath(value[1:]) + + @memoize def ContextDerivedTypedList(klass, base_class=List): """Specialized TypedList for use with ContextDerivedValue types. @@ -671,12 +691,20 @@ VARIABLES = { file. """, 'export'), - 'ANDROID_RES_DIRS': (List, list, + 'ANDROID_RES_DIRS': (ContextDerivedTypedListWithItems(Path, List), list, """Android resource directories. - This variable contains a list of directories, each relative to - the srcdir, containing static files to package into a 'res' - directory and merge into an APK file. + This variable contains a list of directories containing static + files to package into a 'res' directory and merge into an APK + file. + """, 'export'), + + 'ANDROID_ASSETS_DIRS': (ContextDerivedTypedListWithItems(Path, List), list, + """Android assets directories. + + This variable contains a list of directories containing static + files to package into an 'assets' directory and merge into an + APK file. """, 'export'), 'ANDROID_ECLIPSE_PROJECT_TARGETS': (dict, dict, diff --git a/python/mozbuild/mozbuild/frontend/data.py b/python/mozbuild/mozbuild/frontend/data.py index 27e103d4ba2..c08c85233e5 100644 --- a/python/mozbuild/mozbuild/frontend/data.py +++ b/python/mozbuild/mozbuild/frontend/data.py @@ -963,3 +963,26 @@ class AndroidEclipseProjectData(object): cpe.ignore_warnings = ignore_warnings self._classpathentries.append(cpe) return cpe + + +class AndroidResDirs(ContextDerived): + """Represents Android resource directories.""" + + __slots__ = ( + 'paths', + ) + + def __init__(self, context, paths): + ContextDerived.__init__(self, context) + self.paths = paths + +class AndroidAssetsDirs(ContextDerived): + """Represents Android assets directories.""" + + __slots__ = ( + 'paths', + ) + + def __init__(self, context, paths): + ContextDerived.__init__(self, context) + self.paths = paths diff --git a/python/mozbuild/mozbuild/frontend/emitter.py b/python/mozbuild/mozbuild/frontend/emitter.py index 4143ea00eca..f8ccf02ca20 100644 --- a/python/mozbuild/mozbuild/frontend/emitter.py +++ b/python/mozbuild/mozbuild/frontend/emitter.py @@ -24,6 +24,8 @@ import reftest import mozinfo from .data import ( + AndroidAssetsDirs, + AndroidResDirs, BrandingFiles, ConfigFileSubstitution, ContextWrapped, @@ -77,7 +79,7 @@ from .reader import SandboxValidationError from .context import ( Context, - ObjDirPath, + AbsolutePath, SourcePath, ObjDirPath, Path, @@ -555,7 +557,6 @@ class TreeMetadataEmitter(LoggingMixin): passthru = VariablePassthru(context) varlist = [ 'ANDROID_GENERATED_RESFILES', - 'ANDROID_RES_DIRS', 'DISABLE_STL_WRAPPING', 'EXTRA_COMPONENTS', 'EXTRA_DSO_LDOPTS', @@ -700,6 +701,19 @@ class TreeMetadataEmitter(LoggingMixin): for name, data in context.get('ANDROID_ECLIPSE_PROJECT_TARGETS', {}).items(): yield ContextWrapped(context, data) + for (symbol, cls) in [ + ('ANDROID_RES_DIRS', AndroidResDirs), + ('ANDROID_ASSETS_DIRS', AndroidAssetsDirs)]: + paths = context.get(symbol) + if not paths: + continue + for p in paths: + if isinstance(p, SourcePath) and not os.path.isdir(p.full_path): + raise SandboxValidationError('Directory listed in ' + '%s is not a directory: \'%s\'' % + (symbol, p.full_path), context) + yield cls(context, paths) + if passthru.variables: yield passthru diff --git a/python/mozbuild/mozbuild/test/frontend/data/android-res-dirs/dir1/foo b/python/mozbuild/mozbuild/test/frontend/data/android-res-dirs/dir1/foo new file mode 100644 index 00000000000..e69de29bb2d diff --git a/python/mozbuild/mozbuild/test/frontend/data/android-res-dirs/moz.build b/python/mozbuild/mozbuild/test/frontend/data/android-res-dirs/moz.build new file mode 100644 index 00000000000..7c55feb0c8a --- /dev/null +++ b/python/mozbuild/mozbuild/test/frontend/data/android-res-dirs/moz.build @@ -0,0 +1,9 @@ +# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- +# Any copyright is dedicated to the Public Domain. +# http://creativecommons.org/publicdomain/zero/1.0/ + +ANDROID_RES_DIRS += [ + '/dir1', + '!/dir2', + '%/dir3', +] diff --git a/python/mozbuild/mozbuild/test/frontend/test_context.py b/python/mozbuild/mozbuild/test/frontend/test_context.py index 74c971e69b1..607f82cd068 100644 --- a/python/mozbuild/mozbuild/test/frontend/test_context.py +++ b/python/mozbuild/mozbuild/test/frontend/test_context.py @@ -8,6 +8,7 @@ import unittest from mozunit import main from mozbuild.frontend.context import ( + AbsolutePath, Context, ContextDerivedTypedList, ContextDerivedTypedListWithItems, @@ -454,6 +455,18 @@ class TestPaths(unittest.TestCase): path = Path(path) self.assertIsInstance(path, ObjDirPath) + def test_absolute_path(self): + config = self.config + ctxt = Context(config=config) + ctxt.push_source(mozpath.join(config.topsrcdir, 'foo', 'moz.build')) + + path = AbsolutePath(ctxt, '%/qux') + self.assertEqual(path, '%/qux') + self.assertEqual(path.full_path, '/qux') + + with self.assertRaises(ValueError): + path = AbsolutePath(ctxt, '%qux') + def test_path_with_mixed_contexts(self): config = self.config ctxt1 = Context(config=config) diff --git a/python/mozbuild/mozbuild/test/frontend/test_emitter.py b/python/mozbuild/mozbuild/test/frontend/test_emitter.py index dfdfdbc9320..102d023d2de 100644 --- a/python/mozbuild/mozbuild/test/frontend/test_emitter.py +++ b/python/mozbuild/mozbuild/test/frontend/test_emitter.py @@ -10,6 +10,7 @@ import unittest from mozunit import main from mozbuild.frontend.data import ( + AndroidResDirs, BrandingFiles, ConfigFileSubstitution, Defines, @@ -874,5 +875,21 @@ class TestEmitterBasic(unittest.TestCase): reader = self.reader('dist-files-missing') self.read_topsrcdir(reader) + def test_android_res_dirs(self): + """Test that ANDROID_RES_DIRS works properly.""" + reader = self.reader('android-res-dirs') + objs = self.read_topsrcdir(reader) + + self.assertEqual(len(objs), 1) + self.assertIsInstance(objs[0], AndroidResDirs) + + # Android resource directories are ordered. + expected = [ + mozpath.join(reader.config.topsrcdir, 'dir1'), + mozpath.join(reader.config.topobjdir, 'dir2'), + '/dir3', + ] + self.assertEquals([p.full_path for p in objs[0].paths], expected) + if __name__ == '__main__': main() diff --git a/toolkit/mozapps/installer/upload-files.mk b/toolkit/mozapps/installer/upload-files.mk index 34402f501aa..1804f9b0795 100644 --- a/toolkit/mozapps/installer/upload-files.mk +++ b/toolkit/mozapps/installer/upload-files.mk @@ -470,6 +470,7 @@ INNER_MAKE_PACKAGE = \ ( cd $(STAGEPATH)$(MOZ_PKG_DIR)$(_BINPATH) && \ unzip -o $(_ABS_DIST)/gecko.ap_ && \ rm $(_ABS_DIST)/gecko.ap_ && \ + $(ZIP) -r9D $(_ABS_DIST)/gecko.ap_ assets && \ $(ZIP) $(if $(ALREADY_SZIPPED),-0 ,$(if $(MOZ_ENABLE_SZIP),-0 ))$(_ABS_DIST)/gecko.ap_ $(ASSET_SO_LIBRARIES) && \ $(ZIP) -r9D $(_ABS_DIST)/gecko.ap_ $(DIST_FILES) -x $(NON_DIST_FILES) $(SZIP_LIBRARIES) && \ $(if $(filter-out ./,$(OMNIJAR_DIR)), \