| 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 | 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 16 matching lines...) Expand all Loading... |
| 27 #define SourceInfo_h | 27 #define SourceInfo_h |
| 28 | 28 |
| 29 #include "bindings/v8/ScriptWrappable.h" | 29 #include "bindings/v8/ScriptWrappable.h" |
| 30 #include "public/platform/WebSourceInfo.h" | 30 #include "public/platform/WebSourceInfo.h" |
| 31 #include "wtf/PassRefPtr.h" | 31 #include "wtf/PassRefPtr.h" |
| 32 #include "wtf/RefCounted.h" | 32 #include "wtf/RefCounted.h" |
| 33 #include "wtf/Vector.h" | 33 #include "wtf/Vector.h" |
| 34 | 34 |
| 35 namespace WebCore { | 35 namespace WebCore { |
| 36 | 36 |
| 37 class SourceInfo : public RefCounted<SourceInfo>, public ScriptWrappable { | 37 class SourceInfo : public RefCountedWillBeGarbageCollectedFinalized<SourceInfo>,
public ScriptWrappable { |
| 38 public: | 38 public: |
| 39 static PassRefPtr<SourceInfo> create(const blink::WebSourceInfo&); | 39 static PassRefPtrWillBeRawPtr<SourceInfo> create(const blink::WebSourceInfo&
); |
| 40 | 40 |
| 41 String id() const; | 41 String id() const; |
| 42 String kind() const; | 42 String kind() const; |
| 43 String label() const; | 43 String label() const; |
| 44 String facing() const; | 44 String facing() const; |
| 45 | 45 |
| 46 void trace(Visitor*) { } |
| 47 |
| 46 private: | 48 private: |
| 47 explicit SourceInfo(const blink::WebSourceInfo&); | 49 explicit SourceInfo(const blink::WebSourceInfo&); |
| 48 | 50 |
| 49 blink::WebSourceInfo m_webSourceInfo; | 51 blink::WebSourceInfo m_webSourceInfo; |
| 50 }; | 52 }; |
| 51 | 53 |
| 52 typedef Vector<RefPtr<SourceInfo> > SourceInfoVector; | 54 typedef WillBeHeapVector<RefPtrWillBeMember<SourceInfo> > SourceInfoVector; |
| 53 | 55 |
| 54 } // namespace WebCore | 56 } // namespace WebCore |
| 55 | 57 |
| 56 #endif // SourceInfo_h | 58 #endif // SourceInfo_h |
| OLD | NEW |