| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 | 65 |
| 66 class DataObject; | 66 class DataObject; |
| 67 class Frame; | 67 class Frame; |
| 68 class FullscreenController; | 68 class FullscreenController; |
| 69 class LinkHighlight; | 69 class LinkHighlight; |
| 70 class PopupContainer; | 70 class PopupContainer; |
| 71 class RenderLayerCompositor; | 71 class RenderLayerCompositor; |
| 72 class UserGestureToken; | 72 class UserGestureToken; |
| 73 class WebActiveGestureAnimation; | 73 class WebActiveGestureAnimation; |
| 74 class WebDevToolsAgentPrivate; | 74 class WebDevToolsAgentPrivate; |
| 75 class WebLayerTreeView; |
| 75 class WebLocalFrameImpl; | 76 class WebLocalFrameImpl; |
| 76 class WebImage; | 77 class WebImage; |
| 77 class WebPagePopupImpl; | 78 class WebPagePopupImpl; |
| 78 class WebPlugin; | 79 class WebPlugin; |
| 79 class WebSettingsImpl; | 80 class WebSettingsImpl; |
| 80 | 81 |
| 81 struct WebSelectionBound; | 82 struct WebSelectionBound; |
| 82 | 83 |
| 83 class WebViewImpl final : public WebView | 84 class WebViewImpl final : public WebView |
| 84 , public RefCounted<WebViewImpl> | 85 , public RefCounted<WebViewImpl> |
| (...skipping 666 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 751 float m_topControlsLayoutHeight; | 752 float m_topControlsLayoutHeight; |
| 752 }; | 753 }; |
| 753 | 754 |
| 754 // We have no ways to check if the specified WebView is an instance of | 755 // We have no ways to check if the specified WebView is an instance of |
| 755 // WebViewImpl because WebViewImpl is the only implementation of WebView. | 756 // WebViewImpl because WebViewImpl is the only implementation of WebView. |
| 756 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); | 757 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); |
| 757 | 758 |
| 758 } // namespace blink | 759 } // namespace blink |
| 759 | 760 |
| 760 #endif | 761 #endif |
| OLD | NEW |