Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(437)

Side by Side Diff: Source/WebKit/chromium/src/LinkHighlight.h

Issue 13959008: Remove NonCompositedContentHost (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Adding back LCD text workaround Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 bool computeHighlightLayerPathAndPosition(WebCore::RenderLayer*); 81 bool computeHighlightLayerPathAndPosition(WebCore::RenderLayer*);
82 82
83 OwnPtr<WebContentLayer> m_contentLayer; 83 OwnPtr<WebContentLayer> m_contentLayer;
84 OwnPtr<WebLayer> m_clipLayer; 84 OwnPtr<WebLayer> m_clipLayer;
85 WebCore::Path m_path; 85 WebCore::Path m_path;
86 86
87 RefPtr<WebCore::Node> m_node; 87 RefPtr<WebCore::Node> m_node;
88 OwnPtr<WebAnimation> m_animation; 88 OwnPtr<WebAnimation> m_animation;
89 WebViewImpl* m_owningWebViewImpl; 89 WebViewImpl* m_owningWebViewImpl;
90 WebCore::GraphicsLayerChromium* m_currentGraphicsLayer; 90 WebCore::GraphicsLayerChromium* m_currentGraphicsLayer;
91 bool m_usingNonCompositedContentHost;
92 91
93 bool m_geometryNeedsUpdate; 92 bool m_geometryNeedsUpdate;
94 bool m_isAnimating; 93 bool m_isAnimating;
95 double m_startTime; 94 double m_startTime;
96 }; 95 };
97 96
98 } // namespace WebKit 97 } // namespace WebKit
99 98
100 #endif 99 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698