| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserv
ed. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserv
ed. |
| 3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
| 4 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 4 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 5 * Copyright (C) 2008 Alp Toker <alp@atoker.com> | 5 * Copyright (C) 2008 Alp Toker <alp@atoker.com> |
| 6 * Copyright (C) Research In Motion Limited 2009. All rights reserved. | 6 * Copyright (C) Research In Motion Limited 2009. All rights reserved. |
| 7 * Copyright (C) 2011 Kris Jordan <krisjordan@gmail.com> | 7 * Copyright (C) 2011 Kris Jordan <krisjordan@gmail.com> |
| 8 * Copyright (C) 2011 Google Inc. All rights reserved. | 8 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 9 * | 9 * |
| 10 * Redistribution and use in source and binary forms, with or without | 10 * Redistribution and use in source and binary forms, with or without |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 #include "core/frame/LocalFrame.h" | 55 #include "core/frame/LocalFrame.h" |
| 56 #include "core/frame/Settings.h" | 56 #include "core/frame/Settings.h" |
| 57 #include "core/frame/VisualViewport.h" | 57 #include "core/frame/VisualViewport.h" |
| 58 #include "core/frame/csp/ContentSecurityPolicy.h" | 58 #include "core/frame/csp/ContentSecurityPolicy.h" |
| 59 #include "core/html/HTMLFormElement.h" | 59 #include "core/html/HTMLFormElement.h" |
| 60 #include "core/html/HTMLFrameOwnerElement.h" | 60 #include "core/html/HTMLFrameOwnerElement.h" |
| 61 #include "core/html/parser/HTMLParserIdioms.h" | 61 #include "core/html/parser/HTMLParserIdioms.h" |
| 62 #include "core/input/EventHandler.h" | 62 #include "core/input/EventHandler.h" |
| 63 #include "core/inspector/ConsoleMessage.h" | 63 #include "core/inspector/ConsoleMessage.h" |
| 64 #include "core/inspector/InspectorInstrumentation.h" | 64 #include "core/inspector/InspectorInstrumentation.h" |
| 65 #include "core/inspector/InstanceCounters.h" |
| 65 #include "core/loader/DocumentLoadTiming.h" | 66 #include "core/loader/DocumentLoadTiming.h" |
| 66 #include "core/loader/DocumentLoader.h" | 67 #include "core/loader/DocumentLoader.h" |
| 67 #include "core/loader/FormSubmission.h" | 68 #include "core/loader/FormSubmission.h" |
| 68 #include "core/loader/FrameLoadRequest.h" | 69 #include "core/loader/FrameLoadRequest.h" |
| 69 #include "core/loader/FrameLoaderClient.h" | 70 #include "core/loader/FrameLoaderClient.h" |
| 70 #include "core/loader/LinkLoader.h" | 71 #include "core/loader/LinkLoader.h" |
| 71 #include "core/loader/MixedContentChecker.h" | 72 #include "core/loader/MixedContentChecker.h" |
| 72 #include "core/loader/NavigationScheduler.h" | 73 #include "core/loader/NavigationScheduler.h" |
| 73 #include "core/loader/NetworkHintsInterface.h" | 74 #include "core/loader/NetworkHintsInterface.h" |
| 74 #include "core/loader/ProgressTracker.h" | 75 #include "core/loader/ProgressTracker.h" |
| (...skipping 1496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1571 // FIXME: We need a way to propagate insecure requests policy flags to | 1572 // FIXME: We need a way to propagate insecure requests policy flags to |
| 1572 // out-of-process frames. For now, we'll always use default behavior. | 1573 // out-of-process frames. For now, we'll always use default behavior. |
| 1573 if (!parentFrame->isLocalFrame()) | 1574 if (!parentFrame->isLocalFrame()) |
| 1574 return nullptr; | 1575 return nullptr; |
| 1575 | 1576 |
| 1576 ASSERT(toLocalFrame(parentFrame)->document()); | 1577 ASSERT(toLocalFrame(parentFrame)->document()); |
| 1577 return toLocalFrame(parentFrame)->document()->insecureNavigationsToUpgrade()
; | 1578 return toLocalFrame(parentFrame)->document()->insecureNavigationsToUpgrade()
; |
| 1578 } | 1579 } |
| 1579 | 1580 |
| 1580 } // namespace blink | 1581 } // namespace blink |
| OLD | NEW |