| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |