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

Unified Diff: content/public/test/android/javatests/src/org/chromium/content/browser/test/util/TestCallbackHelperContainer.java

Issue 141533006: [Android] Move the java content/ package to content_public/ to start the split. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Small fixes and findbugs line update Created 6 years, 11 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/test/android/javatests/src/org/chromium/content/browser/test/util/TestCallbackHelperContainer.java
diff --git a/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/TestCallbackHelperContainer.java b/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/TestCallbackHelperContainer.java
deleted file mode 100644
index c0b1554400f8f47e304a15f34381fd0fe6748540..0000000000000000000000000000000000000000
--- a/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/TestCallbackHelperContainer.java
+++ /dev/null
@@ -1,186 +0,0 @@
-// Copyright 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.test.util;
-
-
-import org.chromium.content.browser.ContentView;
-import org.chromium.content.browser.ContentViewCore;
-
-import java.util.concurrent.TimeUnit;
-import java.util.concurrent.TimeoutException;
-
-/**
- * This class is used to provide callback hooks for tests and related classes.
- */
-public class TestCallbackHelperContainer {
- private TestContentViewClient mTestContentViewClient;
- private TestWebContentsObserver mTestWebContentsObserver;
-
- public TestCallbackHelperContainer(ContentView contentView) {
- mTestContentViewClient = new TestContentViewClient();
- contentView.getContentViewCore().setContentViewClient(mTestContentViewClient);
- mTestWebContentsObserver = new TestWebContentsObserver(contentView.getContentViewCore());
- }
-
- protected TestCallbackHelperContainer(
- TestContentViewClient viewClient, TestWebContentsObserver contentsObserver) {
- mTestContentViewClient = viewClient;
- mTestWebContentsObserver = contentsObserver;
- }
-
- public static class OnPageFinishedHelper extends CallbackHelper {
- private String mUrl;
- public void notifyCalled(String url) {
- mUrl = url;
- notifyCalled();
- }
- public String getUrl() {
- assert getCallCount() > 0;
- return mUrl;
- }
- }
-
- public static class OnPageStartedHelper extends CallbackHelper {
- private String mUrl;
- public void notifyCalled(String url) {
- mUrl = url;
- notifyCalled();
- }
- public String getUrl() {
- assert getCallCount() > 0;
- return mUrl;
- }
- }
-
- public static class OnReceivedErrorHelper extends CallbackHelper {
- private int mErrorCode;
- private String mDescription;
- private String mFailingUrl;
- public void notifyCalled(int errorCode, String description, String failingUrl) {
- mErrorCode = errorCode;
- mDescription = description;
- mFailingUrl = failingUrl;
- notifyCalled();
- }
- public int getErrorCode() {
- assert getCallCount() > 0;
- return mErrorCode;
- }
- public String getDescription() {
- assert getCallCount() > 0;
- return mDescription;
- }
- public String getFailingUrl() {
- assert getCallCount() > 0;
- return mFailingUrl;
- }
- }
-
- public static class OnEvaluateJavaScriptResultHelper extends CallbackHelper {
- private String mJsonResult;
-
- /**
- * Starts evaluation of a given JavaScript code on a given contentViewCore.
- * @param contentViewCore A ContentViewCore instance to be used.
- * @param code A JavaScript code to be evaluated.
- */
- public void evaluateJavaScript(ContentViewCore contentViewCore, String code) {
- ContentViewCore.JavaScriptCallback callback =
- new ContentViewCore.JavaScriptCallback() {
- @Override
- public void handleJavaScriptResult(String jsonResult) {
- notifyCalled(jsonResult);
- }
- };
- contentViewCore.evaluateJavaScript(code, callback);
- mJsonResult = null;
- }
-
- /**
- * Returns true if the evaluation started by evaluateJavaScript() has completed.
- */
- public boolean hasValue() {
- return mJsonResult != null;
- }
-
- /**
- * Returns the JSON result of a previously completed JavaScript evaluation and
- * resets the helper to accept new evaluations.
- * @return String JSON result of a previously completed JavaScript evaluation.
- */
- public String getJsonResultAndClear() {
- assert hasValue();
- String result = mJsonResult;
- mJsonResult = null;
- return result;
- }
-
-
- /**
- * Returns a criteria that checks that the evaluation has finished.
- */
- public Criteria getHasValueCriteria() {
- return new Criteria() {
- @Override
- public boolean isSatisfied() {
- return hasValue();
- }
- };
- }
-
- /**
- * Waits till the JavaScript evaluation finishes and returns true if a value was returned,
- * false if it timed-out.
- */
- public boolean waitUntilHasValue(long timeout, TimeUnit timeoutUnits)
- throws InterruptedException, TimeoutException {
- waitUntilCriteria(getHasValueCriteria(), timeout, timeoutUnits);
- return hasValue();
- }
-
- public boolean waitUntilHasValue() throws InterruptedException, TimeoutException {
- waitUntilCriteria(getHasValueCriteria());
- return hasValue();
- }
-
- public void notifyCalled(String jsonResult) {
- assert !hasValue();
- mJsonResult = jsonResult;
- notifyCalled();
- }
- }
-
- public static class OnStartContentIntentHelper extends CallbackHelper {
- private String mIntentUrl;
- public void notifyCalled(String intentUrl) {
- mIntentUrl = intentUrl;
- notifyCalled();
- }
- public String getIntentUrl() {
- assert getCallCount() > 0;
- return mIntentUrl;
- }
- }
-
- public OnPageStartedHelper getOnPageStartedHelper() {
- return mTestWebContentsObserver.getOnPageStartedHelper();
- }
-
- public OnPageFinishedHelper getOnPageFinishedHelper() {
- return mTestWebContentsObserver.getOnPageFinishedHelper();
- }
-
- public OnReceivedErrorHelper getOnReceivedErrorHelper() {
- return mTestWebContentsObserver.getOnReceivedErrorHelper();
- }
-
- public OnEvaluateJavaScriptResultHelper getOnEvaluateJavaScriptResultHelper() {
- return mTestContentViewClient.getOnEvaluateJavaScriptResultHelper();
- }
-
- public OnStartContentIntentHelper getOnStartContentIntentHelper() {
- return mTestContentViewClient.getOnStartContentIntentHelper();
- }
-}

Powered by Google App Engine
This is Rietveld 408576698