OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2009, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2011 Apple Inc. All rights reserved. |
3 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 3 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
4 * Copyright (C) Research In Motion Limited 2009. All rights reserved. | 4 * Copyright (C) Research In Motion Limited 2009. All rights reserved. |
5 * Copyright (C) 2011 Google Inc. All rights reserved. | 5 * Copyright (C) 2011 Google Inc. All rights reserved. |
6 * | 6 * |
7 * Redistribution and use in source and binary forms, with or without | 7 * Redistribution and use in source and binary forms, with or without |
8 * modification, are permitted provided that the following conditions | 8 * modification, are permitted provided that the following conditions |
9 * are met: | 9 * are met: |
10 * | 10 * |
(...skipping 14 matching lines...) Expand all Loading... |
25 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 25 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
26 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 26 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
27 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 27 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
29 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 29 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
30 */ | 30 */ |
31 | 31 |
32 #ifndef FrameLoader_h | 32 #ifndef FrameLoader_h |
33 #define FrameLoader_h | 33 #define FrameLoader_h |
34 | 34 |
35 #include "IconURL.h" | 35 #include "core/dom/IconURL.h" |
36 #include "SecurityContext.h" | 36 #include "core/dom/SecurityContext.h" |
37 #include "core/loader/FrameLoaderStateMachine.h" | 37 #include "core/loader/FrameLoaderStateMachine.h" |
38 #include "core/loader/FrameLoaderTypes.h" | 38 #include "core/loader/FrameLoaderTypes.h" |
39 #include "core/loader/HistoryController.h" | 39 #include "core/loader/HistoryController.h" |
40 #include "core/loader/IconController.h" | 40 #include "core/loader/IconController.h" |
41 #include "core/loader/MixedContentChecker.h" | 41 #include "core/loader/MixedContentChecker.h" |
42 #include "core/loader/ResourceLoadNotifier.h" | 42 #include "core/loader/ResourceLoadNotifier.h" |
43 #include "core/loader/SubframeLoader.h" | 43 #include "core/loader/SubframeLoader.h" |
44 #include "core/loader/cache/CachePolicy.h" | 44 #include "core/loader/cache/CachePolicy.h" |
45 #include "core/page/LayoutMilestones.h" | 45 #include "core/page/LayoutMilestones.h" |
46 #include "core/platform/Timer.h" | 46 #include "core/platform/Timer.h" |
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
427 // the frame name references a frame different from the openerFrame, e.g. when i
t is | 427 // the frame name references a frame different from the openerFrame, e.g. when i
t is |
428 // "_self" or "_parent". | 428 // "_self" or "_parent". |
429 // | 429 // |
430 // FIXME: Consider making this function part of an appropriate class (not FrameL
oader) | 430 // FIXME: Consider making this function part of an appropriate class (not FrameL
oader) |
431 // and moving it to a more appropriate location. | 431 // and moving it to a more appropriate location. |
432 Frame* createWindow(Frame* openerFrame, Frame* lookupFrame, const FrameLoadReque
st&, const WindowFeatures&, bool& created); | 432 Frame* createWindow(Frame* openerFrame, Frame* lookupFrame, const FrameLoadReque
st&, const WindowFeatures&, bool& created); |
433 | 433 |
434 } // namespace WebCore | 434 } // namespace WebCore |
435 | 435 |
436 #endif // FrameLoader_h | 436 #endif // FrameLoader_h |
OLD | NEW |