OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2009 Apple 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 | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 22 matching lines...) Expand all Loading... |
33 namespace WebCore { | 33 namespace WebCore { |
34 | 34 |
35 struct CompositionEventInit : UIEventInit { | 35 struct CompositionEventInit : UIEventInit { |
36 CompositionEventInit(); | 36 CompositionEventInit(); |
37 | 37 |
38 String data; | 38 String data; |
39 }; | 39 }; |
40 | 40 |
41 class CompositionEvent FINAL : public UIEvent { | 41 class CompositionEvent FINAL : public UIEvent { |
42 public: | 42 public: |
43 static PassRefPtr<CompositionEvent> create() | 43 static PassRefPtrWillBeRawPtr<CompositionEvent> create() |
44 { | 44 { |
45 return adoptRef(new CompositionEvent); | 45 return adoptRefCountedWillBeRefCountedGarbageCollected(new CompositionEv
ent); |
46 } | 46 } |
47 | 47 |
48 static PassRefPtr<CompositionEvent> create(const AtomicString& type, PassRef
Ptr<AbstractView> view, const String& data, const Vector<CompositionUnderline>&
underlines) | 48 static PassRefPtrWillBeRawPtr<CompositionEvent> create(const AtomicString& t
ype, PassRefPtr<AbstractView> view, const String& data, const Vector<Composition
Underline>& underlines) |
49 { | 49 { |
50 return adoptRef(new CompositionEvent(type, view, data, underlines)); | 50 return adoptRefCountedWillBeRefCountedGarbageCollected(new CompositionEv
ent(type, view, data, underlines)); |
51 } | 51 } |
52 | 52 |
53 static PassRefPtr<CompositionEvent> create(const AtomicString& type, const C
ompositionEventInit& initializer) | 53 static PassRefPtrWillBeRawPtr<CompositionEvent> create(const AtomicString& t
ype, const CompositionEventInit& initializer) |
54 { | 54 { |
55 return adoptRef(new CompositionEvent(type, initializer)); | 55 return adoptRefCountedWillBeRefCountedGarbageCollected(new CompositionEv
ent(type, initializer)); |
56 } | 56 } |
57 | 57 |
58 virtual ~CompositionEvent(); | 58 virtual ~CompositionEvent(); |
59 | 59 |
60 void initCompositionEvent(const AtomicString& type, bool canBubble, bool can
celable, PassRefPtr<AbstractView>, const String& data); | 60 void initCompositionEvent(const AtomicString& type, bool canBubble, bool can
celable, PassRefPtr<AbstractView>, const String& data); |
61 | 61 |
62 String data() const { return m_data; } | 62 String data() const { return m_data; } |
63 int activeSegmentStart() const { return m_activeSegmentStart; } | 63 int activeSegmentStart() const { return m_activeSegmentStart; } |
64 int activeSegmentEnd() const { return m_activeSegmentEnd; } | 64 int activeSegmentEnd() const { return m_activeSegmentEnd; } |
65 const Vector<unsigned>& getSegments() const { return m_segments; } | 65 const Vector<unsigned>& getSegments() const { return m_segments; } |
(...skipping 10 matching lines...) Expand all Loading... |
76 | 76 |
77 String m_data; | 77 String m_data; |
78 int m_activeSegmentStart; | 78 int m_activeSegmentStart; |
79 int m_activeSegmentEnd; | 79 int m_activeSegmentEnd; |
80 Vector<unsigned> m_segments; | 80 Vector<unsigned> m_segments; |
81 }; | 81 }; |
82 | 82 |
83 } // namespace WebCore | 83 } // namespace WebCore |
84 | 84 |
85 #endif // CompositionEvent_h | 85 #endif // CompositionEvent_h |
OLD | NEW |