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

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

Issue 2466383004: blink: Cleanup class forward declarations (Closed)
Patch Set: Created 4 years, 1 month 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
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; 48 class SkImage;
49 class SkPaint; 49 class SkPaint;
50 class SkPath; 50 class SkPath;
51 class SkPicture; 51 class SkPicture;
52 class SkRRect; 52 class SkRRect;
53 class SkTextBlob;
54 struct SkImageInfo; 53 struct SkImageInfo;
55 struct SkRect; 54 struct SkRect;
56 55
57 namespace blink { 56 namespace blink {
58 57
59 class FloatRect; 58 class FloatRect;
60 class FloatRoundedRect; 59 class FloatRoundedRect;
61 class ImageBuffer;
62 class KURL; 60 class KURL;
63 class PaintController; 61 class PaintController;
64 class Path; 62 class Path;
65 63
66 class PLATFORM_EXPORT GraphicsContext { 64 class PLATFORM_EXPORT GraphicsContext {
67 WTF_MAKE_NONCOPYABLE(GraphicsContext); 65 WTF_MAKE_NONCOPYABLE(GraphicsContext);
68 USING_FAST_MALLOC(GraphicsContext); 66 USING_FAST_MALLOC(GraphicsContext);
69 67
70 public: 68 public:
71 enum DisabledMode { 69 enum DisabledMode {
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after
463 461
464 float m_deviceScaleFactor; 462 float m_deviceScaleFactor;
465 463
466 unsigned m_printing : 1; 464 unsigned m_printing : 1;
467 unsigned m_hasMetaData : 1; 465 unsigned m_hasMetaData : 1;
468 }; 466 };
469 467
470 } // namespace blink 468 } // namespace blink
471 469
472 #endif // GraphicsContext_h 470 #endif // GraphicsContext_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698