Commit Graph
345 Commits
Author SHA1 Message Date
samartnik 298513a978 [Android] TileView moved to components/browser_ui/widget
Chromium change:
https://chromium.googlesource.com/chromium/src.git/+/d089c588065dd2f12fe17d9d10b4e1fbbb1c5e20

Move TileView to components/browser_ui/widget

Moving TileView related class to components/browser_ui/widget, and all
related resources files
to make it available for using in launchpad module.

Bug: 1178919
2021-03-23 14:55:34 -04:00
samartnik b6ddfff33c [Android] tab_switcher_toolbar.xml was moved
Chromium change:
https://chromium.googlesource.com/chromium/src.git/+/afd16b5973b054f53733695ce33708ef430a0b83

Toolbar: Remove deps on TrackerFactory

Removes deps on TrackerFactory in ToolbarTabControllerImpl and
move it to the modularized toolbar/. There are a few more classes
that can also be moved:

ToolbarTabControllerImplTest.java
ToolbarTabControllerImpl.java
top/IncognitoSwitchCoordinator.java
top/IncognitoSwitchProperties.java
top/IncognitoSwitchViewBinder.java
top/TabSwitcherActionMenuCoordinator.java
top/TabSwitcherActionMenuRenderTest.java

Bug: 1127732
2021-03-23 14:55:02 -04:00
samartnik 4caf5eb56b Merge pull request #8308 from brave/android_tab_groups_fix
[Android] Fixes Tab Groups controls behaviour on tab closing
2021-03-22 11:05:59 -04:00
samartnik 01a39dba3e [Android] Fixes Tab Groups controls behaviour on tab closing 2021-03-19 17:18:11 -04:00
AlexeyBarabash 0b03da8608 Empty icons for cards flip operations
Fixes brave/brave-browser#9867
2021-03-19 18:43:35 +02:00
Brian R. Bondy b31185e875 Revert "Merge pull request #8299 from brave/revert_8257"
This reverts commit 96aebb9ee6, reversing
changes made to 7e073b26c1.
2021-03-18 20:26:48 -04:00
Jocelyn Liu 25a3c5c48d Revert "Merge pull request #8257 from brave/ipfs-android"
This reverts commit 534a1e122d, reversing
changes made to 103be2b8c1.
2021-03-18 14:02:59 -07:00
Brian R. Bondy 7f0bc31b89 Add IPFS gateway support on Android 2021-03-17 13:09:14 -04:00
samartnik 460d8335f4 Merge pull request #8227 from brave/android_reconcile_tab_groups
[Android] Reconciles Tab Group feature with bottom toolbar
2021-03-12 14:53:18 -05:00
samartnik ccfd2dcb17 [Android] Changes icon for new tab in Tab Groups 2021-03-12 12:11:17 -05:00
Deep Pandya 3a39cdf265 Merge pull request #8173 from brave/remove_warning_android
Remove warning android
2021-03-12 10:03:00 -05:00
samartnik 45fedd4e16 [Android] Reconciles Tab Group feature with bottom toolbar 2021-03-11 16:26:33 -05:00
Deep Pandya 1f527d2e9e Merge pull request #7834 from brave/change_text_color_ac_panel_android
Change text color for AC panel
2021-03-10 17:51:17 -05:00
Deep 438e27e84d Remove touch event warnings
Remove string format warning
2021-03-07 19:14:02 -05:00
Deep c68504899a Remove warnnings for unused resources
Remove warning for drawables
2021-03-07 19:14:02 -05:00
Deep f16d013900 Remove scrollview related warnings 2021-03-07 19:14:02 -05:00
Deep ea55de9aaa Remove unused files 2021-03-07 19:14:01 -05:00
samartnik 43e9976cad [Android] Added new menu icons 2021-02-19 09:41:55 -05:00
samartnik 68b4f2abfc [Android] Applied new icons for menu 2021-02-18 21:19:57 -05:00
Deep 8622599bd0 Update BAP modal 2021-02-17 11:49:04 -05:00
Sampson 9aabb84a12 Clarifies Preference Functionality
Resolves https://github.com/brave/brave-browser/issues/14095
2021-02-10 14:12:17 -06:00
samartnik 68b43207e8 [Android] Fixes for lint error and java warnings
Fixes this lint error:
../../chrome/android/java/res/layout/brave_sync_done.xml:85: Error: Must use app:tint instead of android:tint [UseAppTint]
                    android:tint="@android:color/black" />

Fixes these java warnings:
../../brave/android/java/org/chromium/chrome/browser/custom_layout/popup_window_tooltip/PopupWindowTooltip.java:66: warning: [NoRedundantFieldInit] Do not explicitly initialize a non-final field with a default value
    private boolean dismissed = false;
                    ^
    (see https://issuetracker.google.com/issues/37124982)
  Did you mean 'private boolean dismissed;'?
../../brave/android/java/org/chromium/chrome/browser/custom_layout/popup_window_tooltip/PopupWindowTooltip.java:302: warning: [MultiVariableDeclaration] Variable declarations should declare only one variable
                    float x, y;
                          ^
    (see https://google.github.io/styleguide/javaguide.html#s4.8.2.1-variables-per-declaration)
  Did you mean 'float x;float y;'?
../../brave/android/java/org/chromium/chrome/browser/custom_layout/popup_window_tooltip/PopupWindowTooltip.java:370: warning: [NoRedundantFieldInit] Do not explicitly initialize a non-final field with a default value
        private boolean modal = false;
                        ^
    (see https://issuetracker.google.com/issues/37124982)
  Did you mean 'private boolean modal;'?
../../brave/android/java/org/chromium/chrome/browser/custom_layout/popup_window_tooltip/ArrowColorDrawable.java:21: warning: [MultiVariableDeclaration] Variable declarations should declare only one variable
    public static final int LEFT = 0, TOP = 1, RIGHT = 2, BOTTOM = 3, AUTO = 4;
                            ^
    (see https://google.github.io/styleguide/javaguide.html#s4.8.2.1-variables-per-declaration)
  Did you mean 'public static final int LEFT = 0;public static final int TOP = 1;public static final int RIGHT = 2;public static final int BOTTOM = 3;public static final int AUTO = 4;'?
../../brave/android/java/org/chromium/chrome/browser/custom_layout/popup_window_tooltip/ArrowColorDrawable.java:85: warning: [MissingOverride] setColor overrides method in ColorDrawable; expected @Override
    public void setColor(@ColorInt int color) {
                ^
    (see https://errorprone.info/bugpattern/MissingOverride)
  Did you mean '@Override public void setColor(@ColorInt int color) {'?
2021-02-04 23:52:52 -05:00
Deep c16a20805a Change text color 2021-02-04 17:11:15 -05:00
Deep c6bb8e5632 Update BAP modal behaviour 2021-02-04 01:30:19 -05:00
Deep 6d8927ba1e Update tooltip UI 2021-02-04 01:28:50 -05:00
Deep 231bc92aa5 Add tooltip UI
Add modal UI
2021-02-04 01:28:50 -05:00
Deep Pandya af5ed0db9c Merge pull request #7764 from brave/issue_13800
Fix #13800
2021-02-01 20:01:59 -05:00
Deep 76d9a1cd66 Fix #13749 2021-02-01 18:02:42 -05:00
Deep d06509839f Fix #13800 2021-02-01 17:54:35 -05:00
Deep 78dae0713c Add set default browser modal
Update behaviour for p3a modal
2021-01-29 13:26:32 -05:00
Deep 169486d23f Add blue tooltips
Update behaviour for tooltips
2021-01-27 10:38:03 -05:00
Deep 64e79f44cb Add generic tooltip UI
Update existing shields tooltip
2021-01-27 10:38:03 -05:00
AlexeyBarabash d0aed44fcd Add warning button to switch Android system sync toggle; fixes brave-browser#11128 2021-01-22 21:54:06 +02:00
Deep b35bed7d1a Update onboading UI 2021-01-15 04:28:18 -05:00
Deep baa55b1ed7 Remove duplicate entry for qwant in search engine list 2021-01-15 04:28:18 -05:00
Deep Pandya 342cc60c5a Merge pull request #7593 from brave/update_p3a_onboarding_behaviour_android
Update behaviour for checkbox on p3a onboarding
2021-01-14 00:08:51 -05:00
Deep Pandya 4db20a2325 Merge pull request #7590 from brave/update_ntp_crash_android
Update NTP code to avoid ID related issue
2021-01-13 18:50:55 -05:00
Deep 6c2d4183c2 Update behaviour for checkbox on p3a onboarding 2021-01-13 17:15:30 -05:00
Deep fd8d14fc22 Update NTP code to avoid ID related issue 2021-01-13 16:24:08 -05:00
Deep 50c3d711a2 Add rewards modal for existing user 2021-01-11 23:45:17 -05:00
Deep Pandya bd1734ac36 Merge pull request #7550 from brave/add_p3a_ui_android
Add p3a UI android
2021-01-11 12:33:06 -05:00
Deep d5030641d0 Add new images on NTP
Update code to work with y center points
2021-01-08 16:37:50 -05:00
Deep 892abcd45e Update privacy report behaviour for p3a 2021-01-08 16:21:26 -05:00
Deep c6fa4b125e Update p3a onboarding behaviour 2021-01-08 16:02:56 -05:00
Deep b69c92347d ADd UI for p3a full screen onboarding 2021-01-08 16:02:56 -05:00
Deep 3025c01e26 Add ecosia for android 2021-01-07 11:04:11 -07:00
Deep 4f0cb07d03 Remove yahoo from SE onboarding android 2021-01-07 11:04:11 -07:00
Max 8c4a6c90fa Merge pull request #7408 from brave/cr88
Upgrade from Chromium 88.0.4315.7 to Chromium 88.0.4324.51.
2021-01-06 20:22:12 -05:00
Deep fd3ee48551 Update NTP widget layout location 2021-01-06 03:36:09 -05:00
Deep b8312f5129 Fix 12010 2021-01-06 03:00:08 -05:00