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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 #include "core/html/HTMLLinkElement.h" | 128 #include "core/html/HTMLLinkElement.h" |
129 #include "core/html/PluginDocument.h" | 129 #include "core/html/PluginDocument.h" |
130 #include "core/inspector/ConsoleMessage.h" | 130 #include "core/inspector/ConsoleMessage.h" |
131 #include "core/inspector/ScriptCallStack.h" | 131 #include "core/inspector/ScriptCallStack.h" |
132 #include "core/layout/HitTestResult.h" | 132 #include "core/layout/HitTestResult.h" |
133 #include "core/layout/LayoutBox.h" | 133 #include "core/layout/LayoutBox.h" |
134 #include "core/layout/LayoutObject.h" | 134 #include "core/layout/LayoutObject.h" |
135 #include "core/layout/LayoutPart.h" | 135 #include "core/layout/LayoutPart.h" |
136 #include "core/layout/LayoutTreeAsText.h" | 136 #include "core/layout/LayoutTreeAsText.h" |
137 #include "core/layout/LayoutView.h" | 137 #include "core/layout/LayoutView.h" |
138 #include "core/layout/style/StyleInheritedData.h" | 138 #include "core/style/StyleInheritedData.h" |
139 #include "core/loader/DocumentLoader.h" | 139 #include "core/loader/DocumentLoader.h" |
140 #include "core/loader/FrameLoadRequest.h" | 140 #include "core/loader/FrameLoadRequest.h" |
141 #include "core/loader/FrameLoader.h" | 141 #include "core/loader/FrameLoader.h" |
142 #include "core/loader/HistoryItem.h" | 142 #include "core/loader/HistoryItem.h" |
143 #include "core/loader/MixedContentChecker.h" | 143 #include "core/loader/MixedContentChecker.h" |
144 #include "core/page/Chrome.h" | 144 #include "core/page/Chrome.h" |
145 #include "core/page/EventHandler.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" |
(...skipping 1937 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2086 { | 2086 { |
2087 m_frameWidget = frameWidget; | 2087 m_frameWidget = frameWidget; |
2088 } | 2088 } |
2089 | 2089 |
2090 WebFrameWidgetImpl* WebLocalFrameImpl::frameWidget() const | 2090 WebFrameWidgetImpl* WebLocalFrameImpl::frameWidget() const |
2091 { | 2091 { |
2092 return m_frameWidget; | 2092 return m_frameWidget; |
2093 } | 2093 } |
2094 | 2094 |
2095 } // namespace blink | 2095 } // namespace blink |
OLD | NEW |