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

Unified Diff: content/public/android/java/src/org/chromium/content_public/browser/WebContents.java

Issue 1144463003: Remove Navigation Transitions from Chromium (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed TransitionPageHelper. Created 5 years, 7 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: content/public/android/java/src/org/chromium/content_public/browser/WebContents.java
diff --git a/content/public/android/java/src/org/chromium/content_public/browser/WebContents.java b/content/public/android/java/src/org/chromium/content_public/browser/WebContents.java
index 587cf8e1c08aaa1a5ebfdae242ca8f6be170daab..bf84409d6fdfd7b2d045788269dc6c71a4e2447f 100644
--- a/content/public/android/java/src/org/chromium/content_public/browser/WebContents.java
+++ b/content/public/android/java/src/org/chromium/content_public/browser/WebContents.java
@@ -72,12 +72,6 @@ public interface WebContents {
public int getBackgroundColor();
/**
- * Requests the renderer insert a link to the specified stylesheet in the
- * main frame's document.
- */
- void addStyleSheetByURL(String url);
-
- /**
* Shows an interstitial page driven by the passed in delegate.
*
* @param url The URL being blocked by the interstitial.
@@ -154,62 +148,11 @@ public interface WebContents {
public boolean isIncognito();
/**
- * Resumes the response which is deferred during start.
- */
- public void resumeResponseDeferredAtStart();
-
- /**
* Resumes the requests for a newly created window.
*/
public void resumeLoadingCreatedWebContents();
/**
- * Set pending Navigation for transition testing on this WebContents.
- */
- public void setHasPendingNavigationTransitionForTesting();
-
- /**
- * Set delegate for notifying navigation transition.
- */
- public void setNavigationTransitionDelegate(NavigationTransitionDelegate delegate);
-
- /**
- * Inserts the provided markup sandboxed into the frame.
- */
- public void setupTransitionView(String markup);
-
- /**
- * Hides transition elements specified by the selector, and activates any
- * exiting-transition stylesheets.
- */
- public void beginExitTransition(String cssSelector, boolean exitToNativeApp);
-
- /**
- * Revert the effect of exit transition after it transitions to activity.
- */
- public void revertExitTransition();
-
- /**
- * Hide transition elements.
- */
- public void hideTransitionElements(String cssSelector);
-
- /**
- * Show transition elements.
- */
- public void showTransitionElements(String cssSelector);
-
- /**
- * Clear the navigation transition data.
- */
- public void clearNavigationTransitionData();
-
- /**
- * Fetch transition elements.
- */
- public void fetchTransitionElements(String url);
-
- /**
* Injects the passed Javascript code in the current page and evaluates it.
* If a result is required, pass in a callback.
*

Powered by Google App Engine
This is Rietveld 408576698