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

Unified Diff: components/cronet/android/chromium_url_request.h

Issue 2339223002: Cronet API Refactoring (Closed)
Patch Set: Rebase & Conflict Resolution Created 4 years, 2 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: components/cronet/android/chromium_url_request.h
diff --git a/components/cronet/android/chromium_url_request.h b/components/cronet/android/chromium_url_request.h
index 0a24e0e30f670663ecfc483c11c906680b60994d..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644
--- a/components/cronet/android/chromium_url_request.h
+++ b/components/cronet/android/chromium_url_request.h
@@ -1,45 +0,0 @@
-// Copyright 2014 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.
-
-#ifndef COMPONENTS_CRONET_ANDROID_CHROMIUM_URL_REQUEST_H_
-#define COMPONENTS_CRONET_ANDROID_CHROMIUM_URL_REQUEST_H_
-
-#include <jni.h>
-
-namespace cronet {
-
-// Define request priority values like REQUEST_PRIORITY_IDLE in a
-// way that ensures they're always the same than their Java counterpart.
-//
-// A Java counterpart will be generated for this enum.
-// GENERATED_JAVA_ENUM_PACKAGE: org.chromium.net
-// GENERATED_JAVA_CLASS_NAME_OVERRIDE: ChromiumUrlRequestPriority
-// GENERATED_JAVA_PREFIX_TO_STRIP: REQUEST_PRIORITY_
-enum UrlRequestPriority {
- REQUEST_PRIORITY_IDLE = 0,
- REQUEST_PRIORITY_LOWEST = 1,
- REQUEST_PRIORITY_LOW = 2,
- REQUEST_PRIORITY_MEDIUM = 3,
- REQUEST_PRIORITY_HIGHEST = 4,
-};
-
-// Define request error values like REQUEST_ERROR_SUCCESS in a
-// way that ensures they're always the same than their Java counterpart.
-//
-// A Java counterpart will be generated for this enum.
-// GENERATED_JAVA_ENUM_PACKAGE: org.chromium.net
-// GENERATED_JAVA_CLASS_NAME_OVERRIDE: ChromiumUrlRequestError
-// GENERATED_JAVA_PREFIX_TO_STRIP: REQUEST_ERROR_
-enum UrlRequestError {
- REQUEST_ERROR_SUCCESS = 0,
- REQUEST_ERROR_UNKNOWN = 1,
- REQUEST_ERROR_MALFORMED_URL = 2,
- REQUEST_ERROR_CONNECTION_TIMED_OUT = 3,
- REQUEST_ERROR_UNKNOWN_HOST = 4,
- REQUEST_ERROR_TOO_MANY_REDIRECTS = 5,
-};
-
-} // namespace cronet
-
-#endif // COMPONENTS_CRONET_ANDROID_CHROMIUM_URL_REQUEST_H_
« no previous file with comments | « components/cronet/android/api/src/org/chromium/net/UserAgent.java ('k') | components/cronet/android/cronet_library_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698