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

Side by Side Diff: third_party/WebKit/Source/web/FrameLoaderClientImpl.h

Issue 1973133002: ✀ Remove postMessage plumbing for swappedout:// ✀ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase to use std::move instead of release(). Created 4 years, 7 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) 2009, 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2011 Apple 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 are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * 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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 bool allowImage(bool enabledPerSettings, const KURL& imageURL) override; 142 bool allowImage(bool enabledPerSettings, const KURL& imageURL) override;
143 bool allowMedia(const KURL& mediaURL) override; 143 bool allowMedia(const KURL& mediaURL) override;
144 bool allowDisplayingInsecureContent(bool enabledPerSettings, const KURL&) ov erride; 144 bool allowDisplayingInsecureContent(bool enabledPerSettings, const KURL&) ov erride;
145 bool allowRunningInsecureContent(bool enabledPerSettings, SecurityOrigin*, c onst KURL&) override; 145 bool allowRunningInsecureContent(bool enabledPerSettings, SecurityOrigin*, c onst KURL&) override;
146 bool allowAutoplay(bool defaultValue) override; 146 bool allowAutoplay(bool defaultValue) override;
147 void didNotAllowScript() override; 147 void didNotAllowScript() override;
148 void didNotAllowPlugins() override; 148 void didNotAllowPlugins() override;
149 void didUseKeygen() override; 149 void didUseKeygen() override;
150 150
151 WebCookieJar* cookieJar() const override; 151 WebCookieJar* cookieJar() const override;
152 bool willCheckAndDispatchMessageEvent(SecurityOrigin* target, MessageEvent*, LocalFrame* sourceFrame) const override;
153 void frameFocused() const override; 152 void frameFocused() const override;
154 void didChangeName(const String& name, const String& uniqueName) override; 153 void didChangeName(const String& name, const String& uniqueName) override;
155 void didEnforceStrictMixedContentChecking() override; 154 void didEnforceStrictMixedContentChecking() override;
156 void didUpdateToUniqueOrigin() override; 155 void didUpdateToUniqueOrigin() override;
157 void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) override; 156 void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) override;
158 void didChangeFrameOwnerProperties(HTMLFrameElementBase*) override; 157 void didChangeFrameOwnerProperties(HTMLFrameElementBase*) override;
159 158
160 void dispatchWillOpenWebSocket(WebSocketHandle*) override; 159 void dispatchWillOpenWebSocket(WebSocketHandle*) override;
161 160
162 void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectionHandler *) override; 161 void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectionHandler *) override;
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 Member<WebLocalFrameImpl> m_webFrame; 193 Member<WebLocalFrameImpl> m_webFrame;
195 194
196 String m_userAgent; 195 String m_userAgent;
197 }; 196 };
198 197
199 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); 198 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr ameLoaderClientImpl(), client.isFrameLoaderClientImpl());
200 199
201 } // namespace blink 200 } // namespace blink
202 201
203 #endif 202 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/frame/RemoteFrameClient.h ('k') | third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698