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

Unified Diff: Source/core/css/CSSBorderImage.cpp

Issue 1233363002: 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/core/css/CSSBorderImage.h ('k') | Source/core/css/CSSBorderImageSliceValue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSBorderImage.cpp
diff --git a/Source/core/css/CSSBorderImage.cpp b/Source/core/css/CSSBorderImage.cpp
index daecf653bdbb76f045e474efe126c1b247d29f2b..19d2fca7cf478b56f0f3fda57912645aa2844056 100644
--- a/Source/core/css/CSSBorderImage.cpp
+++ b/Source/core/css/CSSBorderImage.cpp
@@ -22,8 +22,8 @@
namespace blink {
-PassRefPtrWillBeRawPtr<CSSValueList> createBorderImageValue(NullableCSSValue image, NullableCSSValue imageSlice,
- NullableCSSValue borderSlice, NullableCSSValue outset, NullableCSSValue repeat)
+PassRefPtrWillBeRawPtr<CSSValueList> createBorderImageValue(const NullableCSSValue& image, const NullableCSSValue& imageSlice,
+ const NullableCSSValue& borderSlice, const NullableCSSValue& outset, const NullableCSSValue& repeat)
{
RefPtrWillBeRawPtr<CSSValueList> list = CSSValueList::createSpaceSeparated();
if (image)
« no previous file with comments | « Source/core/css/CSSBorderImage.h ('k') | Source/core/css/CSSBorderImageSliceValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698