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

  /external/chromium_org/third_party/WebKit/public/platform/
WebURL.h 41 #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"
42 static GURL* empty_gurl = NULL;
83 GURL::GURL() : is_valid_(false), inner_url_(NULL) {
86 GURL::GURL(const GURL& other)
92 inner_url_ = new GURL(*other.inner_url_);
97 GURL::GURL(const std::string& url_string) : inner_url_(NULL)
    [all...]
gurl.h 17 class URL_EXPORT GURL {
23 GURL();
27 GURL(const GURL& other);
36 explicit GURL(const std::string& url_string /*, output_param_encoding*/);
37 explicit GURL(const base::string16& url_string /*, output_param_encoding*/);
42 GURL(const char* canonical_spec, size_t canonical_spec_len,
48 // implementation, we use swap to move the data into the GURL itself,
50 GURL(std::string canonical_spec,
53 ~GURL();
    [all...]
  /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 185 milliseconds