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

Unified Diff: Source/core/dom/shadow/ShadowRoot.cpp

Issue 60113005: Enable chromium_code=1 on Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: use this-> Created 7 years, 1 month 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
« no previous file with comments | « Source/config.gyp ('k') | Source/core/fetch/Resource.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/shadow/ShadowRoot.cpp
diff --git a/Source/core/dom/shadow/ShadowRoot.cpp b/Source/core/dom/shadow/ShadowRoot.cpp
index 95865b8c5213e66dab9cae028e1176a41d3f392d..156e14283c49a4d0ef8157f01091ddd6c9cb911e 100644
--- a/Source/core/dom/shadow/ShadowRoot.cpp
+++ b/Source/core/dom/shadow/ShadowRoot.cpp
@@ -212,7 +212,7 @@ void ShadowRoot::setApplyAuthorStyles(bool value)
if (isOrphan())
return;
- if (m_applyAuthorStyles == value)
+ if (applyAuthorStyles() == value)
return;
m_applyAuthorStyles = value;
@@ -238,7 +238,7 @@ void ShadowRoot::setResetStyleInheritance(bool value)
if (isOrphan())
return;
- if (value == m_resetStyleInheritance)
+ if (value == resetStyleInheritance())
return;
m_resetStyleInheritance = value;
« no previous file with comments | « Source/config.gyp ('k') | Source/core/fetch/Resource.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698