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

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

Issue 14018004: [Android] Refactor NativeView to be able to use it for AutofillDialog. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 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/ContainerViewDelegate.java
diff --git a/content/public/android/java/src/org/chromium/content/browser/ContainerViewDelegate.java b/content/public/android/java/src/org/chromium/content/browser/ContainerViewDelegate.java
deleted file mode 100644
index 432b01aa7a7d24cd15ca79fe0b1f16d6c9287a0b..0000000000000000000000000000000000000000
--- a/content/public/android/java/src/org/chromium/content/browser/ContainerViewDelegate.java
+++ /dev/null
@@ -1,31 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-package org.chromium.content.browser;
-
-import android.view.View;
-
-/**
- * Interface to add and remove views from the implementing view.
- */
-public interface ContainerViewDelegate {
-
- /**
- * Add the view.
- * @param view The view to be added.
- */
- public void addViewToContainerView(View view);
-
- /**
- * Remove the view if it is present, otherwise do nothing.
- * @param view The view to be removed.
- */
- public void removeViewFromContainerView(View view);
-
- /**
- * Used for any calculations that need to place a View near a particular piece of web content.
- * @return The Y offset in pixels to apply to any added views.
- */
- public int getChildViewOffsetYPix();
-}

Powered by Google App Engine
This is Rietveld 408576698