| Index: components/web_restrictions/browser/javatest/src/org/chromium/components/webrestrictions/browser/MockWebRestrictionsClient.java
|
| diff --git a/components/web_restrictions/browser/javatest/src/org/chromium/components/webrestrictions/MockWebRestrictionsClient.java b/components/web_restrictions/browser/javatest/src/org/chromium/components/webrestrictions/browser/MockWebRestrictionsClient.java
|
| similarity index 94%
|
| rename from components/web_restrictions/browser/javatest/src/org/chromium/components/webrestrictions/MockWebRestrictionsClient.java
|
| rename to components/web_restrictions/browser/javatest/src/org/chromium/components/webrestrictions/browser/MockWebRestrictionsClient.java
|
| index 0b9af2a8eb7548f03948d833ab90622b6023107c..8b8a5e4b8b4513048d3b1694ce03364195149a8a 100644
|
| --- a/components/web_restrictions/browser/javatest/src/org/chromium/components/webrestrictions/MockWebRestrictionsClient.java
|
| +++ b/components/web_restrictions/browser/javatest/src/org/chromium/components/webrestrictions/browser/MockWebRestrictionsClient.java
|
| @@ -2,7 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -package org.chromium.components.webrestrictions;
|
| +package org.chromium.components.webrestrictions.browser;
|
|
|
| import android.database.AbstractCursor;
|
|
|
| @@ -54,8 +54,8 @@ public class MockWebRestrictionsClient extends WebRestrictionsClient {
|
| * error page to show instead.
|
| */
|
| @Override
|
| - ShouldProceedResult shouldProceed(final String url) {
|
| - return new ShouldProceedResult(new AbstractCursor() {
|
| + WebRestrictionsClientResult shouldProceed(final String url) {
|
| + return new WebRestrictionsClientResult(new AbstractCursor() {
|
|
|
| @Override
|
| public int getCount() {
|
|
|