Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3445)

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/compositor/bottombar/contextualsearch/ContextualSearchPanelBase.java

Issue 1372963005: Separate ContextualSearchPanel from OverlayPanel (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@rebase-extract-management-delegate
Patch Set: fix redundant null check Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/android/java/src/org/chromium/chrome/browser/compositor/bottombar/contextualsearch/ContextualSearchPanelBase.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/compositor/bottombar/contextualsearch/ContextualSearchPanelBase.java b/chrome/android/java/src/org/chromium/chrome/browser/compositor/bottombar/contextualsearch/ContextualSearchPanelBase.java
index f3f8b95a1bd5d1d17688bc646a80f077d2902bf2..e113bc1c371dd20d294ae42d255cdb6aea2a1ef6 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/compositor/bottombar/contextualsearch/ContextualSearchPanelBase.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/compositor/bottombar/contextualsearch/ContextualSearchPanelBase.java
@@ -13,9 +13,9 @@ import android.view.ViewGroup;
import org.chromium.base.ApiCompatibilityUtils;
import org.chromium.base.VisibleForTesting;
import org.chromium.chrome.R;
+import org.chromium.chrome.browser.compositor.bottombar.OverlayPanel.PanelState;
+import org.chromium.chrome.browser.compositor.bottombar.OverlayPanel.StateChangeReason;
import org.chromium.chrome.browser.compositor.bottombar.contextualsearch.ContextualSearchOptOutPromo.ContextualSearchPromoHost;
-import org.chromium.chrome.browser.compositor.bottombar.contextualsearch.ContextualSearchPanel.PanelState;
-import org.chromium.chrome.browser.compositor.bottombar.contextualsearch.ContextualSearchPanel.StateChangeReason;
import org.chromium.chrome.browser.preferences.PreferencesLauncher;
import org.chromium.chrome.browser.preferences.privacy.ContextualSearchPreferenceFragment;
import org.chromium.chrome.browser.util.MathUtils;
@@ -194,11 +194,6 @@ abstract class ContextualSearchPanelBase implements ContextualSearchPromoHost {
protected final Context mContext;
/**
- * The {@link ContextualSearchPanelFeatures} for this panel.
- */
- protected ContextualSearchPanelFeatures mSearchPanelFeatures;
-
- /**
* The current state of the Contextual Search Panel.
*/
private PanelState mPanelState = PanelState.UNDEFINED;
@@ -233,24 +228,12 @@ abstract class ContextualSearchPanelBase implements ContextualSearchPromoHost {
/**
* Animates the Contextual Search Panel to its closed state.
- *
* @param reason The reason for the change of panel state.
+ * @param animate If the panel should animate closed.
*/
protected abstract void closePanel(StateChangeReason reason, boolean animate);
/**
- * Sets Contextual Search's preference state.
- *
- * @param enabled Whether the preference should be enabled.
- */
- public abstract void setPreferenceState(boolean enabled);
-
- /**
- * @return Whether the Panel Promo is visible.
- */
- protected abstract boolean isPromoVisible();
-
- /**
* Animates the acceptance of the Promo.
*/
protected abstract void animatePromoAcceptance();
@@ -271,33 +254,33 @@ abstract class ContextualSearchPanelBase implements ContextualSearchPromoHost {
*/
protected abstract void onClosed(StateChangeReason reason);
- /**
- * @return The height of the Peek Promo in the peeked state, in pixels.
- */
- protected abstract float getPeekPromoHeightPeekingPx();
+ // ============================================================================================
+ // General methods from Contextual Search Manager
+ // ============================================================================================
/**
- * @return The height of the Peek Promo, in pixels.
+ * TODO(mdjones): This method should be removed from this class.
+ * @return The resource id that contains how large the top controls are.
*/
- protected abstract float getPeekPromoHeight();
+ protected abstract int getControlContainerHeightResource();
// ============================================================================================
- // General methods from Contextual Search Manager
+ // Peeking promo methods
// ============================================================================================
/**
- * TODO(mdjones): This method should be removed from this class.
- * @return True if the tab hosting the panel is a custom tab.
+ * @return The height of the Peek Promo in the peeked state, in pixels.
*/
- public abstract boolean isCustomTab();
+ protected float getPeekPromoHeightPeekingPx() {
+ return 0;
+ }
/**
- * TODO(mdjones): This method should be removed from this class.
- * @return The resource id that contains how large the top controls are.
+ * @return The height of the Peek Promo, in pixels.
*/
- public abstract int getControlContainerHeightResource();
-
-
+ protected float getPeekPromoHeight() {
+ return 0;
+ }
// ============================================================================================
// Layout Integration
@@ -561,6 +544,14 @@ abstract class ContextualSearchPanelBase implements ContextualSearchPromoHost {
return mIsMaximized;
}
+ /**
+ * Get if the panel supports an expanded state. This should be overridden in child classes.
+ * @return True if the panel supports an EXPANDED state.
+ */
+ protected boolean supportsExpandedState() {
+ return false;
+ }
+
// --------------------------------------------------------------------------------------------
// Contextual Search Bar states
// --------------------------------------------------------------------------------------------
@@ -848,7 +839,6 @@ abstract class ContextualSearchPanelBase implements ContextualSearchPromoHost {
* Initializes the UI state.
*/
protected void initializeUiState() {
- mSearchPanelFeatures = new ContextualSearchPanelFeatures(isCustomTab());
mIsShowing = false;
// Static values.
@@ -1229,6 +1219,13 @@ abstract class ContextualSearchPanelBase implements ContextualSearchPromoHost {
}
/**
+ * @return Whether the Panel Promo is visible.
+ */
+ protected boolean isPromoVisible() {
+ return false;
+ }
+
+ /**
* Updates the UI state for Opt Out Promo.
*
* @param percentage The visibility percentage of the Promo. A visibility of 0 means the
@@ -1377,6 +1374,12 @@ abstract class ContextualSearchPanelBase implements ContextualSearchPromoHost {
});
}
+ /**
+ * @param enabled Whether the preference should be enabled.
+ */
+ public void setPreferenceState(boolean enabled) {
+ }
+
@Override
public void onPromoButtonClick(boolean accepted) {
if (accepted) {

Powered by Google App Engine
This is Rietveld 408576698