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

Unified Diff: Source/web/PluginPlaceholderImplTest.cpp

Issue 1226123008: CSSValue Immediates: Replace CSSPrimitiveValue usage with const references (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@cssvalue_patch_4_attempt_2
Patch Set: Rebase Created 5 years, 5 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
« no previous file with comments | « Source/modules/canvas2d/CanvasRenderingContext2DState.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/PluginPlaceholderImplTest.cpp
diff --git a/Source/web/PluginPlaceholderImplTest.cpp b/Source/web/PluginPlaceholderImplTest.cpp
index fdb0c75328f9ca02eec0703d36034d14d98bb1ba..afb4f982dca8fb782bf5edd9851115abf6e5e7d2 100644
--- a/Source/web/PluginPlaceholderImplTest.cpp
+++ b/Source/web/PluginPlaceholderImplTest.cpp
@@ -99,8 +99,8 @@ bool isHiddenWithInlineStyle(Element* element)
{
if (!element->inlineStyle())
return false;
- NullableCSSValue value = element->inlineStyle()->getPropertyCSSValue(CSSPropertyDisplay);
- return value && value->isPrimitiveValue() && toCSSPrimitiveValue(*value).getValueID() == CSSValueNone;
+ const NullableCSSValue& value = element->inlineStyle()->getPropertyCSSValue(CSSPropertyDisplay);
+ return value && value->isPrimitiveValue() && toCSSPrimitiveValue(value).getValueID() == CSSValueNone;
}
TEST_F(PluginPlaceholderImplTest, Closeable)
« no previous file with comments | « Source/modules/canvas2d/CanvasRenderingContext2DState.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698