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

Side by Side Diff: third_party/WebKit/Source/core/css/resolver/StyleBuilderConverter.h

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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * * Redistributions of source code must retain the above copyright 4 * * Redistributions of source code must retain the above copyright
5 * notice, this list of conditions and the following disclaimer. 5 * notice, this list of conditions and the following disclaimer.
6 * * Redistributions in binary form must reproduce the above 6 * * Redistributions in binary form must reproduce the above
7 * copyright notice, this list of conditions and the following disclaimer 7 * copyright notice, this list of conditions and the following disclaimer
8 * in the documentation and/or other materials provided with the 8 * in the documentation and/or other materials provided with the
9 * distribution. 9 * distribution.
10 * * Neither the name of Google Inc. nor the names of its 10 * * Neither the name of Google Inc. nor the names of its
(...skipping 26 matching lines...) Expand all
37 #include "core/style/QuotesData.h" 37 #include "core/style/QuotesData.h"
38 #include "core/style/ShadowList.h" 38 #include "core/style/ShadowList.h"
39 #include "core/style/StyleOffsetRotation.h" 39 #include "core/style/StyleOffsetRotation.h"
40 #include "core/style/StyleReflection.h" 40 #include "core/style/StyleReflection.h"
41 #include "core/style/StyleScrollSnapData.h" 41 #include "core/style/StyleScrollSnapData.h"
42 #include "core/style/TransformOrigin.h" 42 #include "core/style/TransformOrigin.h"
43 #include "platform/LengthSize.h" 43 #include "platform/LengthSize.h"
44 #include "platform/fonts/FontDescription.h" 44 #include "platform/fonts/FontDescription.h"
45 #include "platform/text/TabSize.h" 45 #include "platform/text/TabSize.h"
46 #include "platform/transforms/Rotation.h" 46 #include "platform/transforms/Rotation.h"
47 #include "wtf/Allocator.h" 47 #include "platform/wtf/Allocator.h"
48 48
49 namespace blink { 49 namespace blink {
50 50
51 class ClipPathOperation; 51 class ClipPathOperation;
52 class RotateTransformOperation; 52 class RotateTransformOperation;
53 class ScaleTransformOperation; 53 class ScaleTransformOperation;
54 class StylePath; 54 class StylePath;
55 class TextSizeAdjust; 55 class TextSizeAdjust;
56 class TranslateTransformOperation; 56 class TranslateTransformOperation;
57 57
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 const CSSValue& value) { 289 const CSSValue& value) {
290 if (value.IsStringValue()) 290 if (value.IsStringValue())
291 return AtomicString(ToCSSStringValue(value).Value()); 291 return AtomicString(ToCSSStringValue(value).Value());
292 DCHECK_EQ(ToCSSIdentifierValue(value).GetValueID(), IdForNone); 292 DCHECK_EQ(ToCSSIdentifierValue(value).GetValueID(), IdForNone);
293 return g_null_atom; 293 return g_null_atom;
294 } 294 }
295 295
296 } // namespace blink 296 } // namespace blink
297 297
298 #endif 298 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698