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

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

Issue 10626017: Provide a common interface for all Android app resources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add missing Java import. Created 8 years, 6 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/org/chromium/content/browser/ContentView.java
diff --git a/content/public/android/java/org/chromium/content/browser/ContentView.java b/content/public/android/java/org/chromium/content/browser/ContentView.java
index 8db0a9afe9ebede34d89e8a1448c4c4eafa527f0..10b636adb8aa3130a4e5c62bcfcca8afd6577c41 100644
--- a/content/public/android/java/org/chromium/content/browser/ContentView.java
+++ b/content/public/android/java/org/chromium/content/browser/ContentView.java
@@ -12,6 +12,7 @@ import android.webkit.DownloadListener;
import android.widget.FrameLayout;
import org.chromium.base.WeakContext;
+import org.chromium.content.app.AppResource;
import org.chromium.content.common.TraceEvent;
public class ContentView extends FrameLayout {
@@ -95,24 +96,6 @@ public class ContentView extends FrameLayout {
AndroidBrowserProcess.initContentViewProcess(context, maxRendererProcesses);
}
- /**
- * Registers the drawable to be used for overlaying the popup zoomer contents. The drawable
- * should be transparent in the middle to allow the zoomed content to show.
- *
- * @param id The id of the drawable to be used to overlay the popup zoomer contents.
- */
- public static void registerPopupOverlayResourceId(int id) {
- // TODO(tedchoc): Implement.
- }
-
- /**
- * Sets how much to round the corners of the popup contents.
- * @param r The radius of the rounded corners of the popup overlay drawable.
- */
- public static void registerPopupOverlayCornerRadius(float r) {
- // TODO(tedchoc): Implement.
- }
-
public ContentView(Context context, int nativeWebContents, int personality) {
this(context, nativeWebContents, null, android.R.attr.webViewStyle, personality);
}

Powered by Google App Engine
This is Rietveld 408576698