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

  /external/chromium_org/third_party/WebKit/Source/platform/weborigin/
Referrer.h 39 struct Referrer {
40 Referrer(const String& referrer, ReferrerPolicy referrerPolicy) : referrer(referrer), referrerPolicy(referrerPolicy) { }
41 Referrer() : referrerPolicy(ReferrerPolicyDefault) { }
43 AtomicString referrer; member in struct:blink::Referrer
  /external/chromium_org/content/public/common/
referrer.h 15 // This struct holds a referrer URL, as well as the referrer policy to be
18 struct CONTENT_EXPORT Referrer {
19 Referrer(const GURL& url, blink::WebReferrerPolicy policy) : url(url),
22 Referrer() : policy(blink::WebReferrerPolicyDefault) {
28 static Referrer SanitizeForRequest(const GURL& request,
29 const Referrer& referrer) {
30 Referrer sanitized_referrer(referrer.url.GetAsReferrer(), referrer.policy)
    [all...]
  /external/chromium_org/content/public/android/java/src/org/chromium/content_public/common/
Referrer.java 8 * Container that holds together a referrer URL along with the referrer policy set on the
9 * originating frame. This corresponds to native content/public/common/referrer.h.
11 public class Referrer {
15 public Referrer(String url, int policy) {
  /external/chromium_org/chrome/browser/net/
referrer.cc 5 #include "chrome/browser/net/referrer.h"
40 // when a referrer is navigated to, we start with the following low initial
53 Referrer::Referrer() : use_count_(1) {}
55 void Referrer::SuggestHost(const GURL& url) {
80 void Referrer::DeleteLeastUseful() {
106 bool Referrer::Trim(double reduce_rate, double threshold) {
123 void Referrer::Deserialize(const base::Value& value) {
148 base::Value* Referrer::Serialize() const {
referrer.h 8 // When future navigations take place to known referrer sites, then we
32 // For each hostname in a Referrer, we have a ReferrerValue. It indicates
48 // Record the fact that the referrer of this subresource was observed. This
51 // of our associated referrer.)
70 // The number of times this item was navigated to with the fixed referrer.
74 // referrer.
78 // of its referrer.
93 // There is one Referrer instance for each hostname that has acted as an HTTP
101 class Referrer : public SubresourceMap {
103 Referrer();
    [all...]
  /external/chromium_org/content/renderer/npapi/
webplugin_impl.h 158 // Determines the referrer value sent along with outgoing HTTP requests
160 enum Referrer {
177 Referrer referrer_flag);
192 Referrer referrer_flag,
247 Referrer referrer_flag,
264 // Helper function to set the referrer on the request passed in.
265 void SetReferrer(blink::WebURLRequest* request, Referrer referrer_flag);
268 bool IsValidUrl(const GURL& url, Referrer referrer_flag);
  /external/chromium_org/third_party/WebKit/Source/core/frame/csp/
ContentSecurityPolicy.h 85 static const char Referrer[];
ContentSecurityPolicy.cpp 90 const char ContentSecurityPolicy::Referrer[] = "referrer";
111 || equalIgnoringCase(name, Referrer)
156 // If we're in a Document, set the referrer policy and sandbox flags, then dump all the
616 init.referrer = document->referrer();
676 cspReport->setString("referrer", violationData.referrer);
713 logToConsole("The 'referrer' Content Security Policy directive has the invalid value \"" + invalidValue + "\". Valid values are \"always\", \"default\", \"never\", and \"origin\".");
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
FetchRequestData.h 10 #include "platform/weborigin/Referrer.h"
35 class Referrer FINAL {
37 Referrer() : m_type(ClientReferrer) { }
43 m_referrer = blink::Referrer();
46 void setClient(const blink::Referrer& referrer)
48 m_referrer = referrer;
51 void setURL(const blink::Referrer& referrer)
53 m_referrer = referrer;
56 blink::Referrer referrer() const { return m_referrer; } function in class:blink::FINAL::FINAL
76 const Referrer& referrer() const { return m_referrer; } function in class:blink::FINAL
    [all...]
  /external/chromium_org/v8/samples/
process.cc 54 virtual const string& Referrer() = 0;
484 const string& path = request->Referrer();
524 String::NewFromUtf8(isolate, "referrer", String::kInternalizedString),
552 const string& referrer,
556 virtual const string& Referrer() { return referrer_; }
568 const string& referrer,
572 referrer_(referrer),

Completed in 2812 milliseconds