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

Side by Side Diff: Source/core/css/CSSValue.cpp

Issue 182063004: Rename adoptRefCountedWillBeRefCountedGarbageCollected to adoptRefWillBeRefCountedGarbageCollected (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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
« no previous file with comments | « Source/core/css/CSSUnicodeRangeValue.h ('k') | Source/core/css/CSSValueList.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Andreas Kling (kling@webkit.org) 2 * Copyright (C) 2011 Andreas Kling (kling@webkit.org)
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 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 struct SameSizeAsCSSValue : public RefCountedWillBeRefCountedGarbageCollected<Sa meSizeAsCSSValue> { 63 struct SameSizeAsCSSValue : public RefCountedWillBeRefCountedGarbageCollected<Sa meSizeAsCSSValue> {
64 uint32_t bitfields; 64 uint32_t bitfields;
65 }; 65 };
66 66
67 COMPILE_ASSERT(sizeof(CSSValue) <= sizeof(SameSizeAsCSSValue), CSS_value_should_ stay_small); 67 COMPILE_ASSERT(sizeof(CSSValue) <= sizeof(SameSizeAsCSSValue), CSS_value_should_ stay_small);
68 68
69 class TextCloneCSSValue : public CSSValue { 69 class TextCloneCSSValue : public CSSValue {
70 public: 70 public:
71 static PassRefPtrWillBeRawPtr<TextCloneCSSValue> create(ClassType classType, const String& text) 71 static PassRefPtrWillBeRawPtr<TextCloneCSSValue> create(ClassType classType, const String& text)
72 { 72 {
73 return adoptRefCountedWillBeRefCountedGarbageCollected(new TextCloneCSSV alue(classType, text)); 73 return adoptRefWillBeRefCountedGarbageCollected(new TextCloneCSSValue(cl assType, text));
74 } 74 }
75 75
76 String cssText() const { return m_cssText; } 76 String cssText() const { return m_cssText; }
77 77
78 void traceAfterDispatch(Visitor* visitor) { CSSValue::traceAfterDispatch(vis itor); } 78 void traceAfterDispatch(Visitor* visitor) { CSSValue::traceAfterDispatch(vis itor); }
79 79
80 private: 80 private:
81 TextCloneCSSValue(ClassType classType, const String& text) 81 TextCloneCSSValue(ClassType classType, const String& text)
82 : CSSValue(classType, /*isCSSOMSafe*/ true) 82 : CSSValue(classType, /*isCSSOMSafe*/ true)
83 , m_cssText(text) 83 , m_cssText(text)
(...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after
647 return toSVGColor(this)->cloneForCSSOM(); 647 return toSVGColor(this)->cloneForCSSOM();
648 case SVGPaintClass: 648 case SVGPaintClass:
649 return toSVGPaint(this)->cloneForCSSOM(); 649 return toSVGPaint(this)->cloneForCSSOM();
650 default: 650 default:
651 ASSERT(!isSubtypeExposedToCSSOM()); 651 ASSERT(!isSubtypeExposedToCSSOM());
652 return TextCloneCSSValue::create(classType(), cssText()); 652 return TextCloneCSSValue::create(classType(), cssText());
653 } 653 }
654 } 654 }
655 655
656 } 656 }
OLDNEW
« no previous file with comments | « Source/core/css/CSSUnicodeRangeValue.h ('k') | Source/core/css/CSSValueList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698