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

Unified Diff: content/public/android/java/src/org/chromium/content/browser/ContentHttpAuthHandler.java

Issue 10821116: Upstream ChromeHttpAuthHandler (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased downstream and added the recent changes Created 8 years, 4 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/android/java/src/org/chromium/content/browser/ContentHttpAuthHandler.java
diff --git a/content/public/android/java/src/org/chromium/content/browser/ContentHttpAuthHandler.java b/content/public/android/java/src/org/chromium/content/browser/ContentHttpAuthHandler.java
deleted file mode 100644
index 74e87193efd9baa10d899aa8a20124d9a6c19b3a..0000000000000000000000000000000000000000
--- a/content/public/android/java/src/org/chromium/content/browser/ContentHttpAuthHandler.java
+++ /dev/null
@@ -1,19 +0,0 @@
-// Copyright (c) 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;
-
-/**
- * This is an interface that is used for HTTP authentication requests handled by the UI. The default
- * implementation just needs to override the method that cancels the request. ContentViewClient
- * uses a callback that receives an object of type ContentHttpAuthHandler to communicate the request
- * to the java side.
- */
-public interface ContentHttpAuthHandler {
- /**
- * A class that implements this interface should have at the least the functionality to cancel
- * the authentication request which is the default behaviour when a request is received.
- */
- public void cancel();
-}

Powered by Google App Engine
This is Rietveld 408576698