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

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

Issue 1194003004: Oilpan: enable appcache + move DocumentLoader to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebased Created 5 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
« no previous file with comments | « Source/core/loader/FrameLoader.cpp ('k') | Source/core/loader/appcache/ApplicationCache.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 // script) from an insecure source. Note that the insecure content can 125 // script) from an insecure source. Note that the insecure content can
126 // spread to other frames in the same origin. 126 // spread to other frames in the same origin.
127 virtual void didRunInsecureContent(SecurityOrigin*, const KURL&) = 0; 127 virtual void didRunInsecureContent(SecurityOrigin*, const KURL&) = 0;
128 virtual void didDetectXSS(const KURL&, bool didBlockEntirePage) = 0; 128 virtual void didDetectXSS(const KURL&, bool didBlockEntirePage) = 0;
129 virtual void didDispatchPingLoader(const KURL&) = 0; 129 virtual void didDispatchPingLoader(const KURL&) = 0;
130 130
131 // Transmits the change in the set of watched CSS selectors property 131 // Transmits the change in the set of watched CSS selectors property
132 // that match any element on the frame. 132 // that match any element on the frame.
133 virtual void selectorMatchChanged(const Vector<String>& addedSelectors, const Vector<String>& removedSelectors) = 0; 133 virtual void selectorMatchChanged(const Vector<String>& addedSelectors, const Vector<String>& removedSelectors) = 0;
134 134
135 virtual PassRefPtr<DocumentLoader> createDocumentLoader(LocalFrame*, con st ResourceRequest&, const SubstituteData&) = 0; 135 virtual PassRefPtrWillBeRawPtr<DocumentLoader> createDocumentLoader(Loca lFrame*, const ResourceRequest&, const SubstituteData&) = 0;
136 136
137 virtual String userAgent(const KURL&) = 0; 137 virtual String userAgent(const KURL&) = 0;
138 138
139 virtual String doNotTrackValue() = 0; 139 virtual String doNotTrackValue() = 0;
140 140
141 virtual void transitionToCommittedForNewPage() = 0; 141 virtual void transitionToCommittedForNewPage() = 0;
142 142
143 virtual PassRefPtrWillBeRawPtr<LocalFrame> createFrame(const FrameLoadRe quest&, const AtomicString& name, HTMLFrameOwnerElement*) = 0; 143 virtual PassRefPtrWillBeRawPtr<LocalFrame> createFrame(const FrameLoadRe quest&, const AtomicString& name, HTMLFrameOwnerElement*) = 0;
144 // Whether or not plugin creation should fail if the HTMLPlugInElement i sn't in the DOM after plugin initialization. 144 // Whether or not plugin creation should fail if the HTMLPlugInElement i sn't in the DOM after plugin initialization.
145 enum DetachedPluginPolicy { 145 enum DetachedPluginPolicy {
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 BeforeUnloadHandler, 238 BeforeUnloadHandler,
239 UnloadHandler, 239 UnloadHandler,
240 }; 240 };
241 virtual void suddenTerminationDisablerChanged(bool present, SuddenTermin ationDisablerType) { } 241 virtual void suddenTerminationDisablerChanged(bool present, SuddenTermin ationDisablerType) { }
242 242
243 }; 243 };
244 244
245 } // namespace blink 245 } // namespace blink
246 246
247 #endif // FrameLoaderClient_h 247 #endif // FrameLoaderClient_h
OLDNEW
« no previous file with comments | « Source/core/loader/FrameLoader.cpp ('k') | Source/core/loader/appcache/ApplicationCache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698