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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 #include "core/html/HTMLFrameOwnerElement.h" | 123 #include "core/html/HTMLFrameOwnerElement.h" |
124 #include "core/html/HTMLHeadElement.h" | 124 #include "core/html/HTMLHeadElement.h" |
125 #include "core/html/HTMLInputElement.h" | 125 #include "core/html/HTMLInputElement.h" |
126 #include "core/html/HTMLLinkElement.h" | 126 #include "core/html/HTMLLinkElement.h" |
127 #include "core/html/PluginDocument.h" | 127 #include "core/html/PluginDocument.h" |
128 #include "core/inspector/ConsoleMessage.h" | 128 #include "core/inspector/ConsoleMessage.h" |
129 #include "core/inspector/InspectorController.h" | 129 #include "core/inspector/InspectorController.h" |
130 #include "core/inspector/ScriptCallStack.h" | 130 #include "core/inspector/ScriptCallStack.h" |
131 #include "core/layout/HitTestResult.h" | 131 #include "core/layout/HitTestResult.h" |
132 #include "core/layout/Layer.h" | 132 #include "core/layout/Layer.h" |
| 133 #include "core/layout/LayoutObject.h" |
133 #include "core/layout/LayoutTreeAsText.h" | 134 #include "core/layout/LayoutTreeAsText.h" |
134 #include "core/loader/DocumentLoader.h" | 135 #include "core/loader/DocumentLoader.h" |
135 #include "core/loader/FrameLoadRequest.h" | 136 #include "core/loader/FrameLoadRequest.h" |
136 #include "core/loader/FrameLoader.h" | 137 #include "core/loader/FrameLoader.h" |
137 #include "core/loader/HistoryItem.h" | 138 #include "core/loader/HistoryItem.h" |
138 #include "core/loader/SubstituteData.h" | 139 #include "core/loader/SubstituteData.h" |
139 #include "core/page/Chrome.h" | 140 #include "core/page/Chrome.h" |
140 #include "core/page/EventHandler.h" | 141 #include "core/page/EventHandler.h" |
141 #include "core/page/FocusController.h" | 142 #include "core/page/FocusController.h" |
142 #include "core/page/FrameTree.h" | 143 #include "core/page/FrameTree.h" |
143 #include "core/page/Page.h" | 144 #include "core/page/Page.h" |
144 #include "core/page/PrintContext.h" | 145 #include "core/page/PrintContext.h" |
145 #include "core/rendering/RenderBox.h" | 146 #include "core/rendering/RenderBox.h" |
146 #include "core/rendering/RenderFrame.h" | 147 #include "core/rendering/RenderFrame.h" |
147 #include "core/rendering/RenderObject.h" | |
148 #include "core/rendering/RenderView.h" | 148 #include "core/rendering/RenderView.h" |
149 #include "core/rendering/style/StyleInheritedData.h" | 149 #include "core/rendering/style/StyleInheritedData.h" |
150 #include "core/timing/Performance.h" | 150 #include "core/timing/Performance.h" |
151 #include "modules/geolocation/GeolocationController.h" | 151 #include "modules/geolocation/GeolocationController.h" |
152 #include "modules/notifications/NotificationPermissionClient.h" | 152 #include "modules/notifications/NotificationPermissionClient.h" |
153 #include "modules/presentation/PresentationController.h" | 153 #include "modules/presentation/PresentationController.h" |
154 #include "modules/push_messaging/PushController.h" | 154 #include "modules/push_messaging/PushController.h" |
155 #include "modules/screen_orientation/ScreenOrientationController.h" | 155 #include "modules/screen_orientation/ScreenOrientationController.h" |
156 #include "platform/ScriptForbiddenScope.h" | 156 #include "platform/ScriptForbiddenScope.h" |
157 #include "platform/TraceEvent.h" | 157 #include "platform/TraceEvent.h" |
(...skipping 1843 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2001 { | 2001 { |
2002 m_frameWidget = frameWidget; | 2002 m_frameWidget = frameWidget; |
2003 } | 2003 } |
2004 | 2004 |
2005 WebFrameWidgetImpl* WebLocalFrameImpl::frameWidget() const | 2005 WebFrameWidgetImpl* WebLocalFrameImpl::frameWidget() const |
2006 { | 2006 { |
2007 return m_frameWidget; | 2007 return m_frameWidget; |
2008 } | 2008 } |
2009 | 2009 |
2010 } // namespace blink | 2010 } // namespace blink |
OLD | NEW |