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

Side by Side Diff: Source/WebKit/chromium/src/FrameLoaderClientImpl.h

Issue 16140020: Delete NetworkingContext and its subclasses. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 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 | Annotate | Revision Log
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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 virtual void didChangeScrollOffset(); 154 virtual void didChangeScrollOffset();
155 virtual bool allowScript(bool enabledPerSettings); 155 virtual bool allowScript(bool enabledPerSettings);
156 virtual bool allowScriptFromSource(bool enabledPerSettings, const WebCore::K URL& scriptURL); 156 virtual bool allowScriptFromSource(bool enabledPerSettings, const WebCore::K URL& scriptURL);
157 virtual bool allowPlugins(bool enabledPerSettings); 157 virtual bool allowPlugins(bool enabledPerSettings);
158 virtual bool allowImage(bool enabledPerSettings, const WebCore::KURL& imageU RL); 158 virtual bool allowImage(bool enabledPerSettings, const WebCore::KURL& imageU RL);
159 virtual bool allowDisplayingInsecureContent(bool enabledPerSettings, WebCore ::SecurityOrigin*, const WebCore::KURL&); 159 virtual bool allowDisplayingInsecureContent(bool enabledPerSettings, WebCore ::SecurityOrigin*, const WebCore::KURL&);
160 virtual bool allowRunningInsecureContent(bool enabledPerSettings, WebCore::S ecurityOrigin*, const WebCore::KURL&); 160 virtual bool allowRunningInsecureContent(bool enabledPerSettings, WebCore::S ecurityOrigin*, const WebCore::KURL&);
161 virtual void didNotAllowScript(); 161 virtual void didNotAllowScript();
162 virtual void didNotAllowPlugins(); 162 virtual void didNotAllowPlugins();
163 163
164 virtual PassRefPtr<WebCore::FrameNetworkingContext> createNetworkingContext( ); 164 virtual WebCookieJar* cookieJar() const;
165 virtual bool willCheckAndDispatchMessageEvent(WebCore::SecurityOrigin* targe t, WebCore::MessageEvent*) const; 165 virtual bool willCheckAndDispatchMessageEvent(WebCore::SecurityOrigin* targe t, WebCore::MessageEvent*) const;
166 virtual void didChangeName(const String&); 166 virtual void didChangeName(const String&);
167 167
168 virtual void dispatchWillOpenSocketStream(WebCore::SocketStreamHandle*) OVER RIDE; 168 virtual void dispatchWillOpenSocketStream(WebCore::SocketStreamHandle*) OVER RIDE;
169 169
170 virtual void dispatchWillStartUsingPeerConnectionHandler(WebCore::RTCPeerCon nectionHandler*) OVERRIDE; 170 virtual void dispatchWillStartUsingPeerConnectionHandler(WebCore::RTCPeerCon nectionHandler*) OVERRIDE;
171 171
172 virtual void didRequestAutocomplete(PassRefPtr<WebCore::FormState>) OVERRIDE ; 172 virtual void didRequestAutocomplete(PassRefPtr<WebCore::FormState>) OVERRIDE ;
173 173
174 virtual bool allowWebGL(bool enabledPerSettings) OVERRIDE; 174 virtual bool allowWebGL(bool enabledPerSettings) OVERRIDE;
(...skipping 29 matching lines...) Expand all
204 // which specifies that the plugin should be ready to accept data. 204 // which specifies that the plugin should be ready to accept data.
205 bool m_sentInitialResponseToPlugin; 205 bool m_sentInitialResponseToPlugin;
206 206
207 // The navigation policy to use for the next call to dispatchCreatePage. 207 // The navigation policy to use for the next call to dispatchCreatePage.
208 WebNavigationPolicy m_nextNavigationPolicy; 208 WebNavigationPolicy m_nextNavigationPolicy;
209 }; 209 };
210 210
211 } // namespace WebKit 211 } // namespace WebKit
212 212
213 #endif 213 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698