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

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

Issue 1723753002: Make Document::isSecureContext() work for OOPIFs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more rebase fixups Created 4 years, 9 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 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 199
200 // This callback notifies the client that the frame created a Keygen element . 200 // This callback notifies the client that the frame created a Keygen element .
201 virtual void didUseKeygen() { } 201 virtual void didUseKeygen() { }
202 202
203 virtual WebCookieJar* cookieJar() const = 0; 203 virtual WebCookieJar* cookieJar() const = 0;
204 204
205 virtual void didChangeName(const String& name, const String& uniqueName) { } 205 virtual void didChangeName(const String& name, const String& uniqueName) { }
206 206
207 virtual void didEnforceStrictMixedContentChecking() {} 207 virtual void didEnforceStrictMixedContentChecking() {}
208 208
209 virtual void didUpdateToUniqueOrigin() {}
210
209 virtual void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) { } 211 virtual void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) { }
210 212
211 virtual void didChangeFrameOwnerProperties(HTMLFrameElementBase*) { } 213 virtual void didChangeFrameOwnerProperties(HTMLFrameElementBase*) { }
212 214
213 virtual void dispatchWillOpenWebSocket(WebSocketHandle*) { } 215 virtual void dispatchWillOpenWebSocket(WebSocketHandle*) { }
214 216
215 virtual void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectio nHandler*) { } 217 virtual void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectio nHandler*) { }
216 218
217 virtual void didRequestAutocomplete(HTMLFormElement*) = 0; 219 virtual void didRequestAutocomplete(HTMLFormElement*) = 0;
218 220
(...skipping 30 matching lines...) Expand all
249 BeforeUnloadHandler, 251 BeforeUnloadHandler,
250 UnloadHandler, 252 UnloadHandler,
251 }; 253 };
252 virtual void suddenTerminationDisablerChanged(bool present, SuddenTerminatio nDisablerType) { } 254 virtual void suddenTerminationDisablerChanged(bool present, SuddenTerminatio nDisablerType) { }
253 255
254 }; 256 };
255 257
256 } // namespace blink 258 } // namespace blink
257 259
258 #endif // FrameLoaderClient_h 260 #endif // FrameLoaderClient_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698