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

Side by Side Diff: third_party/WebKit/Source/platform/graphics/GraphicsContext.h

Issue 2542203004: blink: Cleanup class/struct forward declarations (Closed)
Patch Set: Created 4 years 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) 2003, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2003, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2008-2009 Torch Mobile, Inc. 3 * Copyright (C) 2008-2009 Torch Mobile, Inc.
4 * Copyright (C) 2013 Google Inc. All rights reserved. 4 * Copyright (C) 2013 Google Inc. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 27 matching lines...) Expand all
38 #include "third_party/skia/include/core/SkMetaData.h" 38 #include "third_party/skia/include/core/SkMetaData.h"
39 #include "third_party/skia/include/core/SkPictureRecorder.h" 39 #include "third_party/skia/include/core/SkPictureRecorder.h"
40 #include "third_party/skia/include/core/SkRefCnt.h" 40 #include "third_party/skia/include/core/SkRefCnt.h"
41 #include "third_party/skia/include/core/SkRegion.h" 41 #include "third_party/skia/include/core/SkRegion.h"
42 #include "wtf/Allocator.h" 42 #include "wtf/Allocator.h"
43 #include "wtf/Forward.h" 43 #include "wtf/Forward.h"
44 #include "wtf/Noncopyable.h" 44 #include "wtf/Noncopyable.h"
45 #include <memory> 45 #include <memory>
46 46
47 class SkBitmap; 47 class SkBitmap;
48 class SkImage;
49 class SkPaint; 48 class SkPaint;
50 class SkPath; 49 class SkPath;
51 class SkPicture; 50 class SkPicture;
52 class SkRRect; 51 class SkRRect;
53 struct SkImageInfo;
54 struct SkRect; 52 struct SkRect;
55 53
56 namespace blink { 54 namespace blink {
57 55
58 class FloatRect; 56 class FloatRect;
59 class FloatRoundedRect; 57 class FloatRoundedRect;
60 class KURL; 58 class KURL;
61 class PaintController; 59 class PaintController;
62 class Path; 60 class Path;
63 61
(...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after
458 456
459 float m_deviceScaleFactor; 457 float m_deviceScaleFactor;
460 458
461 unsigned m_printing : 1; 459 unsigned m_printing : 1;
462 unsigned m_hasMetaData : 1; 460 unsigned m_hasMetaData : 1;
463 }; 461 };
464 462
465 } // namespace blink 463 } // namespace blink
466 464
467 #endif // GraphicsContext_h 465 #endif // GraphicsContext_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698