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

Side by Side Diff: Source/core/css/FontFace.h

Issue 812873003: Clean up forward declarations in WebKit/Source (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: style fix Created 6 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
« no previous file with comments | « Source/core/css/CSSPathValue.h ('k') | Source/core/css/RuleFeature.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 #include "wtf/PassRefPtr.h" 42 #include "wtf/PassRefPtr.h"
43 #include "wtf/RefCounted.h" 43 #include "wtf/RefCounted.h"
44 #include "wtf/text/WTFString.h" 44 #include "wtf/text/WTFString.h"
45 45
46 namespace blink { 46 namespace blink {
47 47
48 class CSSFontFace; 48 class CSSFontFace;
49 class CSSValueList; 49 class CSSValueList;
50 class DOMArrayBuffer; 50 class DOMArrayBuffer;
51 class DOMArrayBufferView; 51 class DOMArrayBufferView;
52 class Dictionary;
53 class Document; 52 class Document;
54 class ExceptionState; 53 class ExceptionState;
55 class FontFaceDescriptors; 54 class FontFaceDescriptors;
56 class StringOrArrayBufferOrArrayBufferView; 55 class StringOrArrayBufferOrArrayBufferView;
57 class StylePropertySet; 56 class StylePropertySet;
58 class StyleRuleFontFace; 57 class StyleRuleFontFace;
59 58
60 class FontFace : public RefCountedWillBeGarbageCollectedFinalized<FontFace>, pub lic ScriptWrappable, public ActiveDOMObject { 59 class FontFace : public RefCountedWillBeGarbageCollectedFinalized<FontFace>, pub lic ScriptWrappable, public ActiveDOMObject {
61 DEFINE_WRAPPERTYPEINFO(); 60 DEFINE_WRAPPERTYPEINFO();
62 public: 61 public:
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 PersistentWillBeMember<LoadedProperty> m_loadedProperty; 144 PersistentWillBeMember<LoadedProperty> m_loadedProperty;
146 OwnPtrWillBeMember<CSSFontFace> m_cssFontFace; 145 OwnPtrWillBeMember<CSSFontFace> m_cssFontFace;
147 WillBeHeapVector<RefPtrWillBeMember<LoadFontCallback> > m_callbacks; 146 WillBeHeapVector<RefPtrWillBeMember<LoadFontCallback> > m_callbacks;
148 }; 147 };
149 148
150 typedef WillBeHeapVector<RefPtrWillBeMember<FontFace> > FontFaceArray; 149 typedef WillBeHeapVector<RefPtrWillBeMember<FontFace> > FontFaceArray;
151 150
152 } // namespace blink 151 } // namespace blink
153 152
154 #endif // FontFace_h 153 #endif // FontFace_h
OLDNEW
« no previous file with comments | « Source/core/css/CSSPathValue.h ('k') | Source/core/css/RuleFeature.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698