| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 class DataObject; | 68 class DataObject; |
| 69 class Frame; | 69 class Frame; |
| 70 class FullscreenController; | 70 class FullscreenController; |
| 71 class LinkHighlight; | 71 class LinkHighlight; |
| 72 class PopupContainer; | 72 class PopupContainer; |
| 73 class RenderLayerCompositor; | 73 class RenderLayerCompositor; |
| 74 class UserGestureToken; | 74 class UserGestureToken; |
| 75 class WebActiveGestureAnimation; | 75 class WebActiveGestureAnimation; |
| 76 class WebDevToolsAgentPrivate; | 76 class WebDevToolsAgentPrivate; |
| 77 class WebLocalFrameImpl; | 77 class WebLocalFrameImpl; |
| 78 class WebRemoteFrameImpl; | |
| 79 class WebImage; | 78 class WebImage; |
| 80 class WebPagePopupImpl; | 79 class WebPagePopupImpl; |
| 81 class WebPlugin; | 80 class WebPlugin; |
| 82 class WebSettingsImpl; | 81 class WebSettingsImpl; |
| 83 | 82 |
| 84 struct WebSelectionBound; | 83 struct WebSelectionBound; |
| 85 | 84 |
| 86 class WebViewImpl final : public WebView | 85 class WebViewImpl final : public WebView |
| 87 , public RefCounted<WebViewImpl> | 86 , public RefCounted<WebViewImpl> |
| 88 , public WebGestureCurveTarget | 87 , public WebGestureCurveTarget |
| (...skipping 666 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 755 float m_topControlsLayoutHeight; | 754 float m_topControlsLayoutHeight; |
| 756 }; | 755 }; |
| 757 | 756 |
| 758 // We have no ways to check if the specified WebView is an instance of | 757 // We have no ways to check if the specified WebView is an instance of |
| 759 // WebViewImpl because WebViewImpl is the only implementation of WebView. | 758 // WebViewImpl because WebViewImpl is the only implementation of WebView. |
| 760 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); | 759 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); |
| 761 | 760 |
| 762 } // namespace blink | 761 } // namespace blink |
| 763 | 762 |
| 764 #endif | 763 #endif |
| OLD | NEW |