Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(261)

Side by Side Diff: Source/core/loader/FrameLoaderClient.h

Issue 232053005: Implement navigator.sendBeacon() (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Adjust unrelated test expectation Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
3 * Copyright (C) 2012 Google Inc. All rights reserved. 3 * Copyright (C) 2012 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 137
138 // This frame has displayed inactive content (such as an image) from an 138 // This frame has displayed inactive content (such as an image) from an
139 // insecure source. Inactive content cannot spread to other frames. 139 // insecure source. Inactive content cannot spread to other frames.
140 virtual void didDisplayInsecureContent() = 0; 140 virtual void didDisplayInsecureContent() = 0;
141 141
142 // The indicated security origin has run active content (such as a 142 // The indicated security origin has run active content (such as a
143 // script) from an insecure source. Note that the insecure content can 143 // script) from an insecure source. Note that the insecure content can
144 // spread to other frames in the same origin. 144 // spread to other frames in the same origin.
145 virtual void didRunInsecureContent(SecurityOrigin*, const KURL&) = 0; 145 virtual void didRunInsecureContent(SecurityOrigin*, const KURL&) = 0;
146 virtual void didDetectXSS(const KURL&, bool didBlockEntirePage) = 0; 146 virtual void didDetectXSS(const KURL&, bool didBlockEntirePage) = 0;
147 virtual void didDispatchPingLoader(const KURL&) = 0; 147 virtual void didDispatchSimplexLoader(const KURL&) = 0;
148 148
149 // Transmits the change in the set of watched CSS selectors property 149 // Transmits the change in the set of watched CSS selectors property
150 // that match any element on the frame. 150 // that match any element on the frame.
151 virtual void selectorMatchChanged(const Vector<String>& addedSelectors, const Vector<String>& removedSelectors) = 0; 151 virtual void selectorMatchChanged(const Vector<String>& addedSelectors, const Vector<String>& removedSelectors) = 0;
152 152
153 virtual PassRefPtr<DocumentLoader> createDocumentLoader(LocalFrame*, con st ResourceRequest&, const SubstituteData&) = 0; 153 virtual PassRefPtr<DocumentLoader> createDocumentLoader(LocalFrame*, con st ResourceRequest&, const SubstituteData&) = 0;
154 154
155 virtual String userAgent(const KURL&) = 0; 155 virtual String userAgent(const KURL&) = 0;
156 156
157 virtual String doNotTrackValue() = 0; 157 virtual String doNotTrackValue() = 0;
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 virtual PassOwnPtr<blink::WebApplicationCacheHost> createApplicationCach eHost(blink::WebApplicationCacheHostClient*) = 0; 227 virtual PassOwnPtr<blink::WebApplicationCacheHost> createApplicationCach eHost(blink::WebApplicationCacheHostClient*) = 0;
228 228
229 virtual void didStopAllLoaders() { } 229 virtual void didStopAllLoaders() { }
230 230
231 virtual bool isFrameLoaderClientImpl() const { return false; } 231 virtual bool isFrameLoaderClientImpl() const { return false; }
232 }; 232 };
233 233
234 } // namespace WebCore 234 } // namespace WebCore
235 235
236 #endif // FrameLoaderClient_h 236 #endif // FrameLoaderClient_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698