| 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 #include "core/html/HTMLAnchorElement.h" | 121 #include "core/html/HTMLAnchorElement.h" |
| 122 #include "core/html/HTMLCollection.h" | 122 #include "core/html/HTMLCollection.h" |
| 123 #include "core/html/HTMLFormElement.h" | 123 #include "core/html/HTMLFormElement.h" |
| 124 #include "core/html/HTMLFrameElementBase.h" | 124 #include "core/html/HTMLFrameElementBase.h" |
| 125 #include "core/html/HTMLFrameOwnerElement.h" | 125 #include "core/html/HTMLFrameOwnerElement.h" |
| 126 #include "core/html/HTMLHeadElement.h" | 126 #include "core/html/HTMLHeadElement.h" |
| 127 #include "core/html/HTMLImageElement.h" | 127 #include "core/html/HTMLImageElement.h" |
| 128 #include "core/html/HTMLInputElement.h" | 128 #include "core/html/HTMLInputElement.h" |
| 129 #include "core/html/HTMLLinkElement.h" | 129 #include "core/html/HTMLLinkElement.h" |
| 130 #include "core/html/PluginDocument.h" | 130 #include "core/html/PluginDocument.h" |
| 131 #include "core/input/EventHandler.h" |
| 131 #include "core/inspector/ConsoleMessage.h" | 132 #include "core/inspector/ConsoleMessage.h" |
| 132 #include "core/inspector/ScriptCallStack.h" | 133 #include "core/inspector/ScriptCallStack.h" |
| 133 #include "core/layout/HitTestResult.h" | 134 #include "core/layout/HitTestResult.h" |
| 134 #include "core/layout/LayoutBox.h" | 135 #include "core/layout/LayoutBox.h" |
| 135 #include "core/layout/LayoutObject.h" | 136 #include "core/layout/LayoutObject.h" |
| 136 #include "core/layout/LayoutPart.h" | 137 #include "core/layout/LayoutPart.h" |
| 137 #include "core/layout/LayoutTreeAsText.h" | 138 #include "core/layout/LayoutTreeAsText.h" |
| 138 #include "core/layout/LayoutView.h" | 139 #include "core/layout/LayoutView.h" |
| 139 #include "core/style/StyleInheritedData.h" | 140 #include "core/style/StyleInheritedData.h" |
| 140 #include "core/loader/DocumentLoader.h" | 141 #include "core/loader/DocumentLoader.h" |
| 141 #include "core/loader/FrameLoadRequest.h" | 142 #include "core/loader/FrameLoadRequest.h" |
| 142 #include "core/loader/FrameLoader.h" | 143 #include "core/loader/FrameLoader.h" |
| 143 #include "core/loader/HistoryItem.h" | 144 #include "core/loader/HistoryItem.h" |
| 144 #include "core/loader/MixedContentChecker.h" | 145 #include "core/loader/MixedContentChecker.h" |
| 145 #include "core/page/EventHandler.h" | |
| 146 #include "core/page/FocusController.h" | 146 #include "core/page/FocusController.h" |
| 147 #include "core/page/FrameTree.h" | 147 #include "core/page/FrameTree.h" |
| 148 #include "core/page/Page.h" | 148 #include "core/page/Page.h" |
| 149 #include "core/page/PrintContext.h" | 149 #include "core/page/PrintContext.h" |
| 150 #include "core/paint/DeprecatedPaintLayer.h" | 150 #include "core/paint/DeprecatedPaintLayer.h" |
| 151 #include "core/paint/ScopeRecorder.h" | 151 #include "core/paint/ScopeRecorder.h" |
| 152 #include "core/paint/TransformRecorder.h" | 152 #include "core/paint/TransformRecorder.h" |
| 153 #include "core/timing/DOMWindowPerformance.h" | 153 #include "core/timing/DOMWindowPerformance.h" |
| 154 #include "core/timing/Performance.h" | 154 #include "core/timing/Performance.h" |
| 155 #include "modules/app_banner/AppBannerController.h" | 155 #include "modules/app_banner/AppBannerController.h" |
| (...skipping 1952 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2108 { | 2108 { |
| 2109 m_frameWidget = frameWidget; | 2109 m_frameWidget = frameWidget; |
| 2110 } | 2110 } |
| 2111 | 2111 |
| 2112 WebFrameWidgetImpl* WebLocalFrameImpl::frameWidget() const | 2112 WebFrameWidgetImpl* WebLocalFrameImpl::frameWidget() const |
| 2113 { | 2113 { |
| 2114 return m_frameWidget; | 2114 return m_frameWidget; |
| 2115 } | 2115 } |
| 2116 | 2116 |
| 2117 } // namespace blink | 2117 } // namespace blink |
| OLD | NEW |