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

Side by Side Diff: third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2D.h

Issue 2801083003: Rewrite references to "wtf/" to "platform/wtf/" in modules. (Closed)
Patch Set: Rebase again^3. Will try landing directly. 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) 2006, 2007, 2009, 2010, 2011, 2012 Apple Inc. All rights 2 * Copyright (C) 2006, 2007, 2009, 2010, 2011, 2012 Apple Inc. All rights
3 * reserved. 3 * reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 21 matching lines...) Expand all
32 #include "core/html/canvas/CanvasRenderingContext.h" 32 #include "core/html/canvas/CanvasRenderingContext.h"
33 #include "core/html/canvas/CanvasRenderingContextFactory.h" 33 #include "core/html/canvas/CanvasRenderingContextFactory.h"
34 #include "core/style/FilterOperations.h" 34 #include "core/style/FilterOperations.h"
35 #include "core/svg/SVGResourceClient.h" 35 #include "core/svg/SVGResourceClient.h"
36 #include "modules/ModulesExport.h" 36 #include "modules/ModulesExport.h"
37 #include "modules/canvas2d/BaseRenderingContext2D.h" 37 #include "modules/canvas2d/BaseRenderingContext2D.h"
38 #include "modules/canvas2d/CanvasRenderingContext2DSettings.h" 38 #include "modules/canvas2d/CanvasRenderingContext2DSettings.h"
39 #include "modules/canvas2d/CanvasRenderingContext2DState.h" 39 #include "modules/canvas2d/CanvasRenderingContext2DState.h"
40 #include "platform/graphics/GraphicsTypes.h" 40 #include "platform/graphics/GraphicsTypes.h"
41 #include "platform/heap/GarbageCollected.h" 41 #include "platform/heap/GarbageCollected.h"
42 #include "platform/wtf/Vector.h"
43 #include "platform/wtf/text/WTFString.h"
42 #include "public/platform/WebThread.h" 44 #include "public/platform/WebThread.h"
43 #include "wtf/Vector.h"
44 #include "wtf/text/WTFString.h"
45 45
46 namespace blink { 46 namespace blink {
47 class WebLayer; 47 class WebLayer;
48 } 48 }
49 49
50 namespace blink { 50 namespace blink {
51 51
52 class CanvasImageSource; 52 class CanvasImageSource;
53 class Element; 53 class Element;
54 class ExceptionState; 54 class ExceptionState;
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 266
267 DEFINE_TYPE_CASTS(CanvasRenderingContext2D, 267 DEFINE_TYPE_CASTS(CanvasRenderingContext2D,
268 CanvasRenderingContext, 268 CanvasRenderingContext,
269 context, 269 context,
270 context->Is2d() && context->canvas(), 270 context->Is2d() && context->canvas(),
271 context.Is2d() && context.canvas()); 271 context.Is2d() && context.canvas());
272 272
273 } // namespace blink 273 } // namespace blink
274 274
275 #endif // CanvasRenderingContext2D_h 275 #endif // CanvasRenderingContext2D_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698