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

Unified Diff: blimp/client/public/android/java/src/org/chromium/blimp_public/contents/BlimpContentsObserver.java

Issue 2624903006: Remove all blimp client code. (Closed)
Patch Set: Update buildbot configuration Created 3 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: blimp/client/public/android/java/src/org/chromium/blimp_public/contents/BlimpContentsObserver.java
diff --git a/blimp/client/public/android/java/src/org/chromium/blimp_public/contents/BlimpContentsObserver.java b/blimp/client/public/android/java/src/org/chromium/blimp_public/contents/BlimpContentsObserver.java
deleted file mode 100644
index 7bdda3cbb3b8363e4d87dd08790e196a6f6c254c..0000000000000000000000000000000000000000
--- a/blimp/client/public/android/java/src/org/chromium/blimp_public/contents/BlimpContentsObserver.java
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright 2016 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.blimp_public.contents;
-
-/**
- * BlimpContentsObserver is the Java representation of a native BlimpContentsObserver object.
- *
- * The BlimpContentsObserver is an observer API implemented by classes which are interested in
- * various events related to {@link BlimpContents}.
- */
-public interface BlimpContentsObserver {
- /**
- * Invoked when the BlimpContents's navigation state is changed.
- */
- void onNavigationStateChanged();
-
- /**
- * Invoked when the BlimpContents starts or stops loading.
- * @param loading Whether or not the BlimpContents is currently loading.
- */
- void onLoadingStateChanged(boolean loading);
-
- /**
- * Invoked when the BlimpContents starts or stops loading a page.
- * @param loading Whether or not the BlimpContents is currently loading a page.
- */
- void onPageLoadingStateChanged(boolean loading);
-}

Powered by Google App Engine
This is Rietveld 408576698