| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 bool computeHighlightLayerPathAndPosition(WebCore::RenderLayer*); | 83 bool computeHighlightLayerPathAndPosition(WebCore::RenderLayer*); |
| 84 | 84 |
| 85 OwnPtr<WebContentLayer> m_contentLayer; | 85 OwnPtr<WebContentLayer> m_contentLayer; |
| 86 OwnPtr<WebLayer> m_clipLayer; | 86 OwnPtr<WebLayer> m_clipLayer; |
| 87 WebCore::Path m_path; | 87 WebCore::Path m_path; |
| 88 | 88 |
| 89 RefPtr<WebCore::Node> m_node; | 89 RefPtr<WebCore::Node> m_node; |
| 90 OwnPtr<WebAnimation> m_animation; | 90 OwnPtr<WebAnimation> m_animation; |
| 91 WebViewImpl* m_owningWebViewImpl; | 91 WebViewImpl* m_owningWebViewImpl; |
| 92 WebCore::GraphicsLayerChromium* m_currentGraphicsLayer; | 92 WebCore::GraphicsLayerChromium* m_currentGraphicsLayer; |
| 93 bool m_usingNonCompositedContentHost; | |
| 94 | 93 |
| 95 bool m_geometryNeedsUpdate; | 94 bool m_geometryNeedsUpdate; |
| 96 bool m_isAnimating; | 95 bool m_isAnimating; |
| 97 double m_startTime; | 96 double m_startTime; |
| 98 }; | 97 }; |
| 99 | 98 |
| 100 } // namespace WebKit | 99 } // namespace WebKit |
| 101 | 100 |
| 102 #endif | 101 #endif |
| OLD | NEW |