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

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

Issue 250923008: Remove PageInfo interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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/browser/ContentView.java
diff --git a/content/public/android/java/src/org/chromium/content/browser/ContentView.java b/content/public/android/java/src/org/chromium/content/browser/ContentView.java
index db99fe8441ccfacec2f01b372cd68c076fdbed3c..3c935bdc214e21fafb0400f7a650fb1ab374999f 100644
--- a/content/public/android/java/src/org/chromium/content/browser/ContentView.java
+++ b/content/public/android/java/src/org/chromium/content/browser/ContentView.java
@@ -29,7 +29,7 @@ import org.chromium.ui.base.WindowAndroid;
* compatibility.
*/
public class ContentView extends FrameLayout
- implements ContentViewCore.InternalAccessDelegate, PageInfo {
+ implements ContentViewCore.InternalAccessDelegate {
private final ContentViewCore mContentViewCore;
@@ -69,23 +69,6 @@ public class ContentView extends FrameLayout
mContentViewCore.initialize(this, this, nativeWebContents, windowAndroid);
}
- // PageInfo implementation.
-
- @Override
- public String getTitle() {
- return mContentViewCore.getTitle();
- }
-
- @Override
- public int getBackgroundColor() {
- return mContentViewCore.getBackgroundColor();
- }
-
- @Override
- public View getView() {
- return this;
- }
-
/**
* @return The core component of the ContentView that handles JNI communication. Should only be
* used for passing to native.

Powered by Google App Engine
This is Rietveld 408576698