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

Side by Side Diff: Source/modules/mediastream/SourceInfo.h

Issue 173363002: Move mediastream module to oilpan transition types (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Added Finalized Created 6 years, 10 months 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 | Annotate | Revision Log
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 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
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 DECLARE_GC_INFO;
38 public: 39 public:
39 static PassRefPtr<SourceInfo> create(const blink::WebSourceInfo&); 40 static PassRefPtrWillBeRawPtr<SourceInfo> create(const blink::WebSourceInfo& );
40 41
41 String id() const; 42 String id() const;
42 String kind() const; 43 String kind() const;
43 String label() const; 44 String label() const;
44 String facing() const; 45 String facing() const;
45 46
47 void trace(Visitor*) { }
48
46 private: 49 private:
47 explicit SourceInfo(const blink::WebSourceInfo&); 50 explicit SourceInfo(const blink::WebSourceInfo&);
48 51
49 blink::WebSourceInfo m_webSourceInfo; 52 blink::WebSourceInfo m_webSourceInfo;
50 }; 53 };
51 54
52 typedef Vector<RefPtr<SourceInfo> > SourceInfoVector; 55 typedef WillBePersistentHeapVector<RefPtrWillBeMember<SourceInfo> > SourceInfoVe ctor;
haraken 2014/02/21 10:47:05 This is used in MediaStreamTrackSourcesRequest, wh
keishi 2014/02/25 07:45:12 How do I move a class in platform dir to the heap?
tkent 2014/02/25 09:04:46 I think we may add "+heap" to platform/DEPS if hea
keishi 2014/02/26 06:14:59 I had to add heap to the dependencies of platform.
tkent 2014/02/26 06:22:01 Adding ../heap/blink_heap.gyp:blink_heap to platfo
53 56
54 } // namespace WebCore 57 } // namespace WebCore
55 58
56 #endif // SourceInfo_h 59 #endif // SourceInfo_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698