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. |