HomeSort by relevance Sort by last modified time
    Searched defs:GURL (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/WebKit/chromium/public/
WebURL.h 40 #include <googleurl/src/gurl.h>
114 WebURL(const GURL& g)
121 WebURL& operator=(const GURL& g)
129 operator GURL() const
131 return isNull() ? GURL() : GURL(m_spec.data(), m_spec.length(), m_parsed, m_isValid);
  /external/chromium/googleurl/src/
gurl.cc 39 #include "googleurl/src/gurl.h"
67 static GURL* empty_gurl = NULL;
108 GURL::GURL() : is_valid_(false) {
111 GURL::GURL(const GURL& other)
117 GURL::GURL(const std::string& url_string) {
121 GURL::GURL(const string16& url_string)
    [all...]
gurl.h 42 class GURL {
48 GURL_API GURL();
52 GURL_API GURL(const GURL& other);
61 GURL_API explicit GURL(const std::string& url_string
63 GURL_API explicit GURL(const string16& url_string
69 GURL_API GURL(const char* canonical_spec, size_t canonical_spec_len,
72 GURL_API GURL& operator=(const GURL& other);
129 bool operator==(const GURL& other) const
    [all...]

Completed in 735 milliseconds