summaryrefslogtreecommitdiffstats
path: root/android_webview/test
diff options
context:
space:
mode:
authorajith.v <ajith.v@chromium.org>2016-01-29 11:35:17 -0800
committerCommit bot <commit-bot@chromium.org>2016-01-29 19:36:16 +0000
commitd9e62efae7f7f8e42ffe7e6046759f0b7bc73cd1 (patch)
treefdc354f5420d739ddb205dbc8dab2a0e14aae78a /android_webview/test
parentdedba6c8a173916af8913c84226b0e7b08e0600f (diff)
downloadchromium_src-d9e62efae7f7f8e42ffe7e6046759f0b7bc73cd1.zip
chromium_src-d9e62efae7f7f8e42ffe7e6046759f0b7bc73cd1.tar.gz
chromium_src-d9e62efae7f7f8e42ffe7e6046759f0b7bc73cd1.tar.bz2
Removing drawChild method of ContentView
This change takes care of removing the drawChild method of ContentView, which is never getting used for any purpose. BUG= Review URL: https://codereview.chromium.org/1649693003 Cr-Commit-Position: refs/heads/master@{#372396}
Diffstat (limited to 'android_webview/test')
-rw-r--r--android_webview/test/shell/src/org/chromium/android_webview/test/AwTestContainerView.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/android_webview/test/shell/src/org/chromium/android_webview/test/AwTestContainerView.java b/android_webview/test/shell/src/org/chromium/android_webview/test/AwTestContainerView.java
index ac86473..43baab3 100644
--- a/android_webview/test/shell/src/org/chromium/android_webview/test/AwTestContainerView.java
+++ b/android_webview/test/shell/src/org/chromium/android_webview/test/AwTestContainerView.java
@@ -435,11 +435,6 @@ public class AwTestContainerView extends FrameLayout {
private class InternalAccessAdapter implements AwContents.InternalAccessDelegate {
@Override
- public boolean drawChild(Canvas canvas, View child, long drawingTime) {
- return AwTestContainerView.super.drawChild(canvas, child, drawingTime);
- }
-
- @Override
public boolean super_onKeyUp(int keyCode, KeyEvent event) {
return AwTestContainerView.super.onKeyUp(keyCode, event);
}