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

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

Issue 2813863003: Rewrite references to "wtf/" to "platform/wtf/" in core/css and core/style. (Closed)
Patch Set: Rebase. Created 3 years, 8 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
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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 #include "core/css/CSSShadowValue.h" 58 #include "core/css/CSSShadowValue.h"
59 #include "core/css/CSSStringValue.h" 59 #include "core/css/CSSStringValue.h"
60 #include "core/css/CSSTimingFunctionValue.h" 60 #include "core/css/CSSTimingFunctionValue.h"
61 #include "core/css/CSSURIValue.h" 61 #include "core/css/CSSURIValue.h"
62 #include "core/css/CSSUnicodeRangeValue.h" 62 #include "core/css/CSSUnicodeRangeValue.h"
63 #include "core/css/CSSUnsetValue.h" 63 #include "core/css/CSSUnsetValue.h"
64 #include "core/css/CSSValueList.h" 64 #include "core/css/CSSValueList.h"
65 #include "core/css/CSSValuePair.h" 65 #include "core/css/CSSValuePair.h"
66 #include "core/css/CSSVariableReferenceValue.h" 66 #include "core/css/CSSVariableReferenceValue.h"
67 #include "platform/Length.h" 67 #include "platform/Length.h"
68 #include "wtf/SizeAssertions.h" 68 #include "platform/wtf/SizeAssertions.h"
69 69
70 namespace blink { 70 namespace blink {
71 71
72 using namespace cssvalue; 72 using namespace cssvalue;
73 73
74 struct SameSizeAsCSSValue 74 struct SameSizeAsCSSValue
75 : public GarbageCollectedFinalized<SameSizeAsCSSValue> { 75 : public GarbageCollectedFinalized<SameSizeAsCSSValue> {
76 uint32_t bitfields; 76 uint32_t bitfields;
77 }; 77 };
78 ASSERT_SIZE(CSSValue, SameSizeAsCSSValue); 78 ASSERT_SIZE(CSSValue, SameSizeAsCSSValue);
(...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after
608 ToCSSCustomPropertyDeclaration(this)->TraceAfterDispatch(visitor); 608 ToCSSCustomPropertyDeclaration(this)->TraceAfterDispatch(visitor);
609 return; 609 return;
610 case kPendingSubstitutionValueClass: 610 case kPendingSubstitutionValueClass:
611 ToCSSPendingSubstitutionValue(this)->TraceAfterDispatch(visitor); 611 ToCSSPendingSubstitutionValue(this)->TraceAfterDispatch(visitor);
612 return; 612 return;
613 } 613 }
614 NOTREACHED(); 614 NOTREACHED();
615 } 615 }
616 616
617 } // namespace blink 617 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSValue.h ('k') | third_party/WebKit/Source/core/css/CSSValueList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698