| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2014 Google Inc. All rights reserved. | 2 * Copyright (C) 2014 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 #include "web/WebLocalFrameImpl.h" | 44 #include "web/WebLocalFrameImpl.h" |
| 45 #include "web/WebViewImpl.h" | 45 #include "web/WebViewImpl.h" |
| 46 #include "wtf/Assertions.h" | 46 #include "wtf/Assertions.h" |
| 47 #include "wtf/HashSet.h" | 47 #include "wtf/HashSet.h" |
| 48 | 48 |
| 49 namespace blink { | 49 namespace blink { |
| 50 class Frame; | 50 class Frame; |
| 51 class Element; | 51 class Element; |
| 52 class InspectorOverlay; | 52 class InspectorOverlay; |
| 53 class LocalFrame; | 53 class LocalFrame; |
| 54 class Page; | |
| 55 class PaintLayerCompositor; | 54 class PaintLayerCompositor; |
| 56 class UserGestureToken; | 55 class UserGestureToken; |
| 57 class CompositorAnimationTimeline; | 56 class CompositorAnimationTimeline; |
| 58 class WebLayer; | 57 class WebLayer; |
| 59 class WebLayerTreeView; | 58 class WebLayerTreeView; |
| 60 class WebMouseEvent; | 59 class WebMouseEvent; |
| 61 class WebMouseWheelEvent; | 60 class WebMouseWheelEvent; |
| 62 class WebFrameWidgetImpl; | 61 class WebFrameWidgetImpl; |
| 63 | 62 |
| 64 using WebFrameWidgetsSet = | 63 using WebFrameWidgetsSet = |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 | 240 |
| 242 DEFINE_TYPE_CASTS(WebFrameWidgetImpl, | 241 DEFINE_TYPE_CASTS(WebFrameWidgetImpl, |
| 243 WebFrameWidgetBase, | 242 WebFrameWidgetBase, |
| 244 widget, | 243 widget, |
| 245 widget->forSubframe(), | 244 widget->forSubframe(), |
| 246 widget.forSubframe()); | 245 widget.forSubframe()); |
| 247 | 246 |
| 248 } // namespace blink | 247 } // namespace blink |
| 249 | 248 |
| 250 #endif | 249 #endif |
| OLD | NEW |