| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 #include "core/layout/LayoutBox.h" | 134 #include "core/layout/LayoutBox.h" |
| 135 #include "core/layout/LayoutObject.h" | 135 #include "core/layout/LayoutObject.h" |
| 136 #include "core/layout/LayoutPart.h" | 136 #include "core/layout/LayoutPart.h" |
| 137 #include "core/layout/LayoutTreeAsText.h" | 137 #include "core/layout/LayoutTreeAsText.h" |
| 138 #include "core/layout/LayoutView.h" | 138 #include "core/layout/LayoutView.h" |
| 139 #include "core/layout/style/StyleInheritedData.h" | 139 #include "core/layout/style/StyleInheritedData.h" |
| 140 #include "core/loader/DocumentLoader.h" | 140 #include "core/loader/DocumentLoader.h" |
| 141 #include "core/loader/FrameLoadRequest.h" | 141 #include "core/loader/FrameLoadRequest.h" |
| 142 #include "core/loader/FrameLoader.h" | 142 #include "core/loader/FrameLoader.h" |
| 143 #include "core/loader/HistoryItem.h" | 143 #include "core/loader/HistoryItem.h" |
| 144 #include "core/loader/MixedContentChecker.h" |
| 144 #include "core/page/Chrome.h" | 145 #include "core/page/Chrome.h" |
| 145 #include "core/page/EventHandler.h" | 146 #include "core/page/EventHandler.h" |
| 146 #include "core/page/FocusController.h" | 147 #include "core/page/FocusController.h" |
| 147 #include "core/page/FrameTree.h" | 148 #include "core/page/FrameTree.h" |
| 148 #include "core/page/Page.h" | 149 #include "core/page/Page.h" |
| 149 #include "core/page/PrintContext.h" | 150 #include "core/page/PrintContext.h" |
| 150 #include "core/timing/DOMWindowPerformance.h" | 151 #include "core/timing/DOMWindowPerformance.h" |
| 151 #include "core/timing/Performance.h" | 152 #include "core/timing/Performance.h" |
| 152 #include "modules/app_banner/AppBannerController.h" | 153 #include "modules/app_banner/AppBannerController.h" |
| 153 #include "modules/geolocation/GeolocationController.h" | 154 #include "modules/geolocation/GeolocationController.h" |
| (...skipping 1861 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2015 { | 2016 { |
| 2016 m_frameWidget = frameWidget; | 2017 m_frameWidget = frameWidget; |
| 2017 } | 2018 } |
| 2018 | 2019 |
| 2019 WebFrameWidgetImpl* WebLocalFrameImpl::frameWidget() const | 2020 WebFrameWidgetImpl* WebLocalFrameImpl::frameWidget() const |
| 2020 { | 2021 { |
| 2021 return m_frameWidget; | 2022 return m_frameWidget; |
| 2022 } | 2023 } |
| 2023 | 2024 |
| 2024 } // namespace blink | 2025 } // namespace blink |
| OLD | NEW |