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

Unified Diff: net/nqe/effective_connection_type.h

Issue 2223773003: Expose effective connection type to Cronet (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changes based on https://codereview.chromium.org/2210633002/ Created 4 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: net/nqe/effective_connection_type.h
diff --git a/net/nqe/effective_connection_type.h b/net/nqe/effective_connection_type.h
index 6160a4d69bd6756a39c13070ec2ae181f8c33efe..feb42df2c98834500bda796ecb1ba92834b9ef72 100644
--- a/net/nqe/effective_connection_type.h
+++ b/net/nqe/effective_connection_type.h
@@ -15,6 +15,12 @@ namespace net {
// EffectiveConnectionType of a network is independent of if the current
// connection is metered or not. For example, an unmetered slow connection may
// have EFFECTIVE_CONNECTION_TYPE_SLOW_2G as its effective connection type.
+// An invalid Java prefix to strip is specified to prevent the Java class
+// generator from automatically stripping off the common prefix
+// ("EFFECTIVE_CONNECTION_TYPE_").
+// GENERATED_JAVA_ENUM_PACKAGE: org.chromium.net
+// GENERATED_JAVA_CLASS_NAME_OVERRIDE: EffectiveConnectionType
xunjieli 2016/08/09 13:22:44 You can omit this line 22.
tbansal1 2016/08/09 17:59:16 Done.
+// GENERATED_JAVA_PREFIX_TO_STRIP: PREFIX_NOT_PRESENT_
xunjieli 2016/08/09 13:22:44 Do you need to keep the prefix? If not, can we str
tbansal1 2016/08/09 17:59:16 If I remove this, then EFFECTIVE_CONNECTION_TYPE_
xunjieli 2016/08/10 17:39:43 Acknowledged.
enum EffectiveConnectionType {
// The connection types should be in increasing order of quality.
EFFECTIVE_CONNECTION_TYPE_UNKNOWN = 0,

Powered by Google App Engine
This is Rietveld 408576698