OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 package org.chromium.android_webview; | 5 package org.chromium.android_webview; |
6 | 6 |
7 import android.content.res.Configuration; | 7 import android.content.res.Configuration; |
8 import android.graphics.Canvas; | 8 import android.graphics.Canvas; |
9 import android.graphics.Paint; | 9 import android.graphics.Paint; |
10 import android.graphics.Rect; | 10 import android.graphics.Rect; |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 | 120 |
121 @Override | 121 @Override |
122 public void onVisibilityChanged(View changedView, int visibility) { | 122 public void onVisibilityChanged(View changedView, int visibility) { |
123 // Intentional no-op. | 123 // Intentional no-op. |
124 } | 124 } |
125 | 125 |
126 @Override | 126 @Override |
127 public void onWindowVisibilityChanged(int visibility) { | 127 public void onWindowVisibilityChanged(int visibility) { |
128 // Intentional no-op. | 128 // Intentional no-op. |
129 } | 129 } |
| 130 |
| 131 @Override |
| 132 public void onContainerViewScrollChanged(int l, int t, int oldl, int oldt) { |
| 133 // Intentional no-op. |
| 134 } |
| 135 |
| 136 @Override |
| 137 public void onContainerViewOverScrolled(int scrollX, int scrollY, boolean cl
ampedX, |
| 138 boolean clampedY) { |
| 139 // Intentional no-op. |
| 140 } |
| 141 |
| 142 @Override |
| 143 public int computeHorizontalScrollRange() { |
| 144 return 0; |
| 145 } |
| 146 |
| 147 @Override |
| 148 public int computeHorizontalScrollOffset() { |
| 149 return 0; |
| 150 } |
| 151 |
| 152 @Override |
| 153 public int computeVerticalScrollRange() { |
| 154 return 0; |
| 155 } |
| 156 |
| 157 @Override |
| 158 public int computeVerticalScrollOffset() { |
| 159 return 0; |
| 160 } |
| 161 |
| 162 @Override |
| 163 public int computeVerticalScrollExtent() { |
| 164 return 0; |
| 165 } |
| 166 |
| 167 @Override |
| 168 public void computeScroll() { |
| 169 // Intentional no-op. |
| 170 } |
130 } | 171 } |
OLD | NEW |