< prev index next >

modules/web/src/main/native/Source/WebCore/platform/URL.h

Print this page

        

@@ -180,10 +180,11 @@
     operator NSString*() const { return string(); }
 #endif
 
 #if PLATFORM(JAVA)
     String deprecatedString() const;
+    bool isJarFile() const { return m_protocolIsInJar; }
 #endif
     const URL* innerURL() const { return 0; }
 
 #ifndef NDEBUG
     void print() const;

@@ -206,10 +207,13 @@
     bool hasPath() const;
 
     String m_string;
     bool m_isValid : 1;
     bool m_protocolIsInHTTPFamily : 1;
+#if PLATFORM(JAVA)
+    bool m_protocolIsInJar : 1;
+#endif
 
     int m_schemeEnd;
     int m_userStart;
     int m_userEnd;
     int m_passwordEnd;
< prev index next >