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

Side by Side Diff: third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp

Issue 2809363002: Rewrite references to "wtf/" to "platform/wtf/" in core/layout. (Closed)
Patch Set: 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) 2009, 2010, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2009, 2010, 2011 Apple Inc. All rights reserved.
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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 #include "platform/graphics/BitmapImage.h" 68 #include "platform/graphics/BitmapImage.h"
69 #include "platform/graphics/CompositorFilterOperations.h" 69 #include "platform/graphics/CompositorFilterOperations.h"
70 #include "platform/graphics/CompositorMutableProperties.h" 70 #include "platform/graphics/CompositorMutableProperties.h"
71 #include "platform/graphics/GraphicsContext.h" 71 #include "platform/graphics/GraphicsContext.h"
72 #include "platform/graphics/paint/ClipDisplayItem.h" 72 #include "platform/graphics/paint/ClipDisplayItem.h"
73 #include "platform/graphics/paint/CullRect.h" 73 #include "platform/graphics/paint/CullRect.h"
74 #include "platform/graphics/paint/DrawingRecorder.h" 74 #include "platform/graphics/paint/DrawingRecorder.h"
75 #include "platform/graphics/paint/PaintController.h" 75 #include "platform/graphics/paint/PaintController.h"
76 #include "platform/graphics/paint/PaintRecordBuilder.h" 76 #include "platform/graphics/paint/PaintRecordBuilder.h"
77 #include "platform/graphics/paint/TransformDisplayItem.h" 77 #include "platform/graphics/paint/TransformDisplayItem.h"
78 #include "platform/wtf/CurrentTime.h"
79 #include "platform/wtf/text/StringBuilder.h"
78 #include "public/platform/WebLayerStickyPositionConstraint.h" 80 #include "public/platform/WebLayerStickyPositionConstraint.h"
79 #include "wtf/CurrentTime.h"
80 #include "wtf/text/StringBuilder.h"
81 81
82 namespace blink { 82 namespace blink {
83 83
84 using namespace HTMLNames; 84 using namespace HTMLNames;
85 85
86 static IntRect ClipBox(LayoutBox& layout_object); 86 static IntRect ClipBox(LayoutBox& layout_object);
87 87
88 static IntRect ContentsRect(const LayoutObject& layout_object) { 88 static IntRect ContentsRect(const LayoutObject& layout_object) {
89 if (!layout_object.IsBox()) 89 if (!layout_object.IsBox())
90 return IntRect(); 90 return IntRect();
(...skipping 3517 matching lines...) Expand 10 before | Expand all | Expand 10 after
3608 } else if (graphics_layer == decoration_outline_layer_.get()) { 3608 } else if (graphics_layer == decoration_outline_layer_.get()) {
3609 name = "Decoration Layer"; 3609 name = "Decoration Layer";
3610 } else { 3610 } else {
3611 NOTREACHED(); 3611 NOTREACHED();
3612 } 3612 }
3613 3613
3614 return name; 3614 return name;
3615 } 3615 }
3616 3616
3617 } // namespace blink 3617 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698