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

  /external/chromium_org/third_party/WebKit/public/platform/
WebURL.h 39 #include <url/gurl.h>
109 WebURL(const GURL& url)
116 WebURL& operator=(const GURL& url)
124 operator GURL() const
126 return isNull() ? GURL() : GURL(m_string.utf8(), m_parsed, m_isValid);
  /external/chromium_org/url/
gurl.cc 14 #include "url/gurl.h"
23 static GURL* empty_gurl = NULL;
64 GURL::GURL() : is_valid_(false) {
67 GURL::GURL(const GURL& other)
72 inner_url_.reset(new GURL(*other.inner_url_));
77 GURL::GURL(const std::string& url_string)
    [all...]
gurl.h 19 class URL_EXPORT GURL {
25 GURL();
29 GURL(const GURL& other);
38 explicit GURL(const std::string& url_string /*, output_param_encoding*/);
39 explicit GURL(const base::string16& url_string /*, output_param_encoding*/);
44 GURL(const char* canonical_spec,
52 // implementation, we use swap to move the data into the GURL itself,
54 GURL(std::string canonical_spec, const url::Parsed& parsed, bool is_valid);
56 ~GURL();
    [all...]

Completed in 215 milliseconds