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

Unified Diff: third_party/WebKit/Source/core/css/parser/CSSLazyParsingTest.cpp

Issue 2671173002: Change CSSParserContext to have a Document handle (vs UseCounter). (Closed)
Patch Set: fix todo style Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/css/parser/CSSLazyParsingTest.cpp
diff --git a/third_party/WebKit/Source/core/css/parser/CSSLazyParsingTest.cpp b/third_party/WebKit/Source/core/css/parser/CSSLazyParsingTest.cpp
index 7d5fbf827d95b1cdf5176b8e8bdae1d34e423827..62386cc4f268c2d09f5033ac4f994d796eb4de2b 100644
--- a/third_party/WebKit/Source/core/css/parser/CSSLazyParsingTest.cpp
+++ b/third_party/WebKit/Source/core/css/parser/CSSLazyParsingTest.cpp
@@ -120,7 +120,7 @@ TEST_F(CSSLazyParsingTest, ChangeDocuments) {
DummyPageHolder::create(IntSize(500, 500));
CSSParserContext* context = CSSParserContext::create(
HTMLStandardMode, CSSParserContext::DynamicProfile,
- UseCounter::getFrom(&dummyHolder->document()));
+ &dummyHolder->document());
m_cachedContents = StyleSheetContents::create(context);
{
CSSStyleSheet* sheet =

Powered by Google App Engine
This is Rietveld 408576698